我的 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
为什么和哪里有错?