7

我是 node.js 和 jsreport 的新手,但我想做的是使用 node.js 在内存中创建一个 pdf,然后将其保存到磁盘。我需要它是独立的,因为它将作为 AWS Lambda 函数运行。

var fs = require('fs');
require("jsreport").render("<h1>Hi there!</h1>").then(function(out) {
    //pipe pdf with "Hi there!"
    fs.writeFile('C:\\helloworld.pdf', out, function (err) {
        if (err) return console.log(err);
        console.log('Hello World > helloworld.txt');
    });
fs.close();
    console.log("The End");
});

虽然这会运行,但输出 pdf 不会在 Adob​​e Reader 中打开,所以我认为文件输出不是有效的 PDF。

这需要 npm install jsreport

4

1 回答 1

6

根据我从 jsreport 网站收集到的信息(尽管我无法验证,因为他们网站上的示例都不适合我),它看起来out不是渲染 (PDF) 数据,而是一个包含 -除其他外——一条溪流。

这使我相信这可能有效:

require("jsreport").render("<h1>Hi there!</h1>").then(function(out) {
  out.result.pipe(fs.createWriteStream('c:\\helloworld.pdf'));
});
于 2015-04-03T19:46:16.430 回答