尝试使用jsreport时ECONNREFUSED

时间:2015-05-25 21:50:02

标签: node.js jsreport

以下代码:

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服务器,但不知道为什么。有关如何调试它或为什么会发生它的想法?

1 个答案:

答案 0 :(得分:0)

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