我想发送一个带有axios的rquest帖子,其中包含人体数据和表单数据,我可以得到任何东西到达我的路线哈德勒:
axios({
method: 'POST',
url: `${keys.SERVER_URL}/post/new-post/${isAuthenticated()._id}`,
formData,
data: { title, content },
headers: {
'Content-Type': 'application/json',
'Content-Type': 'multipart/form-data',
},
});
然后在路由处理程序我console.log
中,我什么也没得到:
app.post("/new-post", (req, res) => {
console.log(req.body);
console.log(req.file):
});