PDF文件上传。出现空白

时间:2019-01-24 15:59:45

标签: javascript node.js amazon-web-services amazon-s3

在邮递员中进行测试时,我生成PDF文件的API将允许我下载生成的文件并完整查看PDF。

将此文件添加到我的S3存储桶时,该文件显示为空白。

这是我使用的参数设置文件类型等

                 let params = {
                     Key: objKey,
                     ContentType: 'application/pdf',
                     Body: file,
                     CacheControl: "no-cache",
                   Metadata: {
                     Title: this.header,
                     Type: this.select,
                     Notes: this.description,
                     Date: moment().format("L h:mm:ss"),
                     User: this.userName
                     },
                          ACL: "public-read"
                     };


想知道我是否在这里错过了什么。

0 个答案:

没有答案