Redux Axios中间件集标头

时间:2019-01-23 16:25:48

标签: reactjs redux axios

我使用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不变:

enter image description here

我尝试更改content-type之类的大小写,尝试将标头包装到config: { headers: { 'Content-T... } }中,但没有一个解决了问题。

如何实现使用'Content-Type':'application / x-www-form-urlencoded'

发送请求

0 个答案:

没有答案