如下代码:

var output = '<p>Hello</p>';
require("jsreport").render({
    template: {
      content: output
    }
}).then(function(out) {
    out.result.pipe(res);
   });
});


返回此错误:

Error:  { [Error: Error during rendering report: connect ECONNREFUSED]
 code: 'ECONNREFUSED',
 errno: 'ECONNREFUSED',
 syscall: 'connect' }


我认为这是因为它无法连接到内部jsreport服务器,但不知道为什么。关于如何调试它或为什么会发生的任何想法?

最佳答案

我们将嵌入式jsreport更改为独立的jsreport。因此,我们使用远程客户端连接到该独立实例。现在可以了!我不知道为什么

关于node.js - 尝试使用jsreport时ECONNREFUSED,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30446469/

10-16 20:13