我如何同时使axios发布请求包含正文和表单数据?

时间:2020-05-08 14:32:15

标签: reactjs express axios

我想发送一个带有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):
});

0 个答案:

没有答案
相关问题