axios post请求变为options请求的解决方法

全局配置

axios.defaults.headers['Content-Type']='application/x-www-form-urlencoded'

注意:使用全局配置会导致所有请求头的‘Content-Type'均为’application/x-www-form-urlencoded'

 

局部配置

axios.post(url,{

header:{

'Content-Type':'application/x-www-form-urlencoded'

}

})

posted @ 2019-05-10 17:52  kongweijian  阅读(4622)  评论(0编辑  收藏  举报