在请求头预处理函数中处理
config.headers
1.PNG
const requestHeaders = ({ config }) => {
config.headers.post[Content-Type] =' xx' //出错
}
content-type会根据 数据 自动设置
1.qs.stringify({key:value}) content-type='application/x-www-form-urlencoded'
2.{key:value} content-type='application/json'
3.FormData content-type='multipart/form-data'
网友评论