我正在尝试使用上传图像到亚马逊s3 multer-s3,但我收到此错误:
TypeError:预期opts.s3为对象node_modules/multer-s3/index.js:69:20
这是我的服务器代码:
var upload = multer({
storage: s3({
dirname: '/',
bucket: 'bucket',
secretAccessKey: 'key',
accessKeyId: 'key',
region: 'us-west-2',
filename: function (req, file, cb) {
cb(null, file.originalname);
}
})
});
app.post('/upload', upload.array('file'), function (req, res, next) {
res.send("Uploaded!");
});
Run Code Online (Sandbox Code Playgroud)
为什么我收到此错误?