1

以下代码:

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

4

1 回答 1

0

我们将嵌入式 jsreport 更改为独立的 jsreport 。所以我们使用远程客户端连接到这个独立的实例。现在它起作用了!我不知道为什么。

于 2015-05-25T23:22:06.790 回答