我在创建 pdf 的 lamda 函数中使用 pdfkit,然后应该将 pdf 上传到 S3 存储桶。但是当我测试函数时,我得到错误:无法确定 [object PDFDocument] 的长度
这是我的功能:
var PDFDocument = require('pdfkit');
var AWS = require('aws-sdk');
process.env['PATH'] = process.env['PATH'] + ':' +
process.env['LAMBDA_TASK_ROOT'];
exports.handler = function(event, context) {
// create a document and pipe to a blob
var doc = new PDFDocument();
// draw some text
doc.fontSize(25)
.text('Hello World', 100, 80);
var params = {
Bucket : "test-bucket",
Key : event.pdf_name + ".pdf",
Body : doc
}
var s3 = new AWS.S3();
s3.putObject(params, function(err, data) {
if (err) {
console.log(err)
} else {
context.done(null, { status: 'pdf created' });
doc.end();
}
});
};
我究竟做错了什么?如果需要,我如何提供文件大小?这是执行此操作的好方法还是有更好的方法将 pdf 文件流上传到 s3 存储桶?