为什么我的文件无法使用 Node.js 上传到 S3
我正在用这个 https://github.com/nuxusr/Node.js---Amazon-S3 将文件上传到 s3 :
在 test-s3-upload.js
中,我评论了大部分测试,因为它们给出了一些错误,因为我的目标是将文件上传到 s3,所以我只保留 testUploadFileToBucket()
测试并在运行 node test.js
时给出确定。
但是当我签入 s3 Fox 时,上传的文件没有显示。 为什么文件没有上传?
I am using this
https://github.com/nuxusr/Node.js---Amazon-S3
for uploading files to s3 :
in test-s3-upload.js
i had commented mostly tests because they was giving some error , as my goal is to upload the file to s3 so i keep only testUploadFileToBucket()
test and while running node test.js
gives ok.
but when i check in s3 fox the uploaded file is not being shown.
why file is not uploaded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用诺克斯代替。 https://github.com/learnboost/knox
Use knox instead. https://github.com/learnboost/knox
查看此项目,尤其是 bin/amazon-s3-upload.js 文件,以便您了解我们如何使用 AwsSum:
它需要一个存储桶名称和一个文件名,并将文件传输到 S3:
$ ./amazon-s3- upload.js -b your-bucket -f the-file.txt
希望有帮助。 :)
Have a look at this project and especially the bin/amazon-s3-upload.js file so you can see how we're doing it using AwsSum:
It takes a bucket name and a filename and will stream the file up to S3 for you:
$ ./amazon-s3-upload.js -b your-bucket -f the-file.txt
Hope that helps. :)