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