我正在执行此代码,使用帖子 http 请求将图像文件从angular
发送到express
。
var req = {
method:'POST',
url:'http://localhost:3131/api/v0.1/upload',
headers: {
'Content-Type': file.type /*"image/jpeg"*/
},
data: file
}
但是当我尝试打印req.body
时,它只返回一个空对象{}
。