你好,老师,前面两个例子都没问题,第三个无论是谷歌浏览器还是火狐我看到请求头的content-type属性一直是没有的,也没有值,没有出现像你所说的自带了“‘Content-Type’: ‘application/x-www-form-urlencoded’”。还有我想问为什么即使如下这样写,content-type还是没有。
const paramsString = 'q=URLUtils.searchParams&topic=api’
const searchParams = new URLSearchParams(paramsString)
axios({
method: ‘post’,
url: ‘/base/post’,
headers:{
‘Content-Type’: ‘application/x-www-form-urlencoded’
},
data: searchParams
})