我使用axios中间件实现了redux操作。不幸的是,API端点仅接受表单数据,因此我必须这样设置。
const saveQuery = (title, description) => {
const bodyFormData = new FormData();
bodyFormData.set('title', title);
bodyFormData.set('description', description);
return {
type: 'SAVE_ITEM',
payload: {
request: {
url: '/save',
method: 'POST',
data: bodyFormData,
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
},
},
};
}
但是请求标头的Content-Type
不变:
我尝试更改content-type
之类的大小写,尝试将标头包装到config: { headers: { 'Content-T... } }
中,但没有一个解决了问题。
如何实现使用'Content-Type':'application / x-www-form-urlencoded'
发送请求