可以把图片上传到阿里云服务器上吗
来源:5-7 多文件上传云存储
慕尼黑1005659
2019-08-29
var options = {
method: ‘POST’,
uri: ‘http://posttestserver.com/post.php’,
formData: {
file: {
value: fs.createReadStream(‘test/test.jpg’),//此处路径用的chooseimage返回的 res.tempFilePaths
options: {
filename: ‘test.jpg’,
contentType: ‘image/jpg’
}
}
},
headers: {
/* ‘content-type’: ‘multipart/form-data’ */ // Is set automatically
}
};
rp(options)
.then(function (body) {
// POST succeeded…
})
.catch(function (err) {
// POST failed…
});
上传到服务器的图片无法打开,是后台接收的问题吗
后台
var postedFile = httpRequest.Files[0];
postedFile.SaveAs(’’);
写回答
1回答
-
谢成
2019-08-30
你这里要实现的功能是把图片上传到第三方服务器吧 这个就要看第三方服务器有什么要求 接口是什么样的 根据相应的第三方服务器文档来上传
00
相似问题