0

我的 axios:

const axiosIns = axios.create({
timeout: 60000,
responseType: 'json',
transformRequest: [data => qs.stringify(data)],
  headers: {
    'x-Requested-With': 'XMLHttpRequest',
    'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
  },
})

和我的帖子数据:

{
  list: [],
  word: "t",
  condition: {
    items: []
  },
}

在此处输入图像描述

但是,在 chrome 网络请求中,我发现 post 数据的空值和键被删除:

在此处输入图像描述

Form Data:
  word: t

为什么和哪里有错?

4

0 回答 0