Hướng dẫn download file từ S3 Amazon ngôn ngữ React JS
2nd Apr 2021Table of contents
Tôi đang cố tải xuống một tệp từ một nhóm trên Amazon S3.
Một số bước cần lưu ý là: xác thực Amazon S3, sau đó bằng cách cung cấp tên nhóm và tệp (khóa), tải xuống hoặc đọc tệp để tôi có thể hiển thị dữ liệu trong tệp.
var AWS = require('aws-sdk');
AWS.config.update(
{
accessKeyId: ".. your key ..",
secretAccessKey: ".. your secret key ..",
}
);
var s3 = new AWS.S3();
s3.getObject(
{ Bucket: "my-bucket", Key: "my-picture.jpg" },
function (error, data) {
if (error != null) {
alert("Failed to retrieve an object: " + error);
} else {
alert("Loaded " + data.ContentLength + " bytes");
// do something with data.Body
}
}
);
Bạn thấy bài viết này như thế nào?
Add new comment