我正在尝试使用React前端和Express服务器将图像上传到cloudinary。 问题是我无法正确地将请求图像发布到我的快递服务器上。
这是我准备稍后发送图像的方式:
var data = new FormData();
console.log(event.target.files[0]) // this prints FileObject succesfully
data.append('image', event.target.files[0]);
console.log(data) // this prints {} but i guess its natural since its FormData ??
this.imageToUpload = data;
这是我发布请求的方式:
axios.post('/api/courses/uploadImage',this.imageToUpload, {
headers: {
'Content-Type': 'multipart/form-data'
}
})
.then( (response) => {
alert(JSON.stringify(response));
})
.catch(function (error) {
console.log(error);
});
现在在服务器端,req.body
为空。
router.post("/courses/uploadImage",(req,res,next)=>{
console.log(req.body) // empty
var image = req.body;
cloudinary.uploader.upload(image, function(error, result) { console.log(result) });
})
我还应该真正将uploader.upload
的第一个参数放在什么位置?
答案 0 :(得分:1)
这不是直接的答案,但是如果您愿意,Cloudinary还提供了一种直接从前端上传图像的方法,从而节省了一些工作。您可以read here further。
我已经使用了他们的小部件,可以很容易地集成到几乎所有应用程序中。
答案 1 :(得分:1)
您可以这样做。我已经在项目中成功尝试过。
function upload(){
var data = new FormData();
data.append('image', event.target.files[0]);
data.append('username', 'Saurabh'); //if you have other fields
axios.post('/api/courses/uploadImage', data,
headers: {
//your headers
})
.then( (response) => {
alert(JSON.stringify(response));
})
.catch(function (error) {
console.log(error);
});
}
在快递路线中,您可以简单地获取诸如此类的值
router.post('/api/courses/uploadImage', upload.single('image'), async(req,res, next) => {
const result = await cloudinary.v2.uploader.upload(req.file.path);
console.log(req.body.username); //Saurabh
//your logic
});
答案 2 :(得分:0)
我通过使用html5 codepen示例将图像直接从客户端上传到cloudinary解决了我的问题。