我正在尝试将图像作为应用程序的一部分上传到s3存储桶。
index.js
function upImg(req) {
if(req.files.img) {
var img = req.files.image;
var name = Math.round(Math.random()*10000).toString(); // Returns a random 5 digit number
if(myDB.uploadImg(img, name)) {
return name;
} else {
return "";
}
} else {
return "";
}
}
app.post('/newEV*', isLoggedIn, function(req, res) {
var myURL = req.path.replace('/newEV', '');
var imgPath = upImg(req);
fetch(myURL).then(function (events){
var myID;
var x = 0;
while(!myID) {
if(!events[x]) {
myID = x;
} else {
x++;
}
}
myDB.newEvent(myURL, req.body.name, req.body.desc, req.body.loc, imgPath, req.body.link, req.body.cap, req.body.date, req.body.time, myID, events);
res.redirect('/edit' + myURL);
});
});
myDB 文件
function signs3(file, name) {
devs3();
const s3 = new aws.S3();
const s3Params = {
Body: file,
Bucket: S3_BUCKET,
Key: name
};
s3.putObject(s3Params, function(err, data) {
if(err) {
throw err;
} else {
console.log("Data from putObject:" + JSON.stringify(data));
}
});
}
module.exports = {
uploadImg : function(file, name) {
var nName = "imgs/" + name;
console.log(nName);
signs3(file, nName);
return true;
}
}
我知道signs3函数有效,因为我可以在应用程序的其他位使用它来上载JSON文件。每当我发布到URL时,我都奇怪地在控制台中看到“来自putObject的数据”,但是我看不到的是nName。我不明白这一点,因为console.log(nName)
行应在另一行之前运行。当我去查看存储桶时,该图像尚未上传(尽管我从控制台获取了ETag),并且该页面未在此显示它(我知道这也是可行的,因为它可以显示已经上传到存储桶的图像)。
答案 0 :(得分:1)
您想执行以下操作,从调用Request object时创建的putObject中获取事件。
const req = s3.putObject( s3Params )
req.on('success', res => {
console.log ('upload complete! );
});
req.on ('error', res => {
console.error (res.error');
});
req.send();
为什么这对于小文件(JSON文件)和大文件(图像)似乎有所不同?因为大文件需要更长的时间才能上传。