我正在尝试使用以下方法从节点中的s3检索图像:
app.get('/photos',function(req,res,next) {
var data = '';
s3.get('/tmp/DSC_0904.jpg').on('response',function(s3res){
console.log(s3res.statusCode);
console.log(s3res.headers);
s3res.setEncoding('binary');
s3res.on('data',function(chunk){
data += chunk;
});
s3res.on('end',function() {
res.contentType('image/jpeg');
res.send(data);
});
}).end();
});
我愿意接受为什么这不起作用的建议.
最佳答案
原文链接:https://www.f2er.com/js/429472.html