axios在IE浏览器中发送get请求时,请求参数为中文时出现乱码问题
1、设置headers中的content-type为'text/html; charset=utf-8'2、使用encodeURLhttp.interceptors.request.use(config => {if (config.method === 'get'||config.method==='GET') {config.url = encodeURI(config.url)}ret
·
1、设置headers中的content-type为
'text/html; charset=utf-8'
2、使用encodeURI
http.interceptors.request.use(
config => {
if (config.method === 'get'||config.method==='GET') {
config.url = encodeURI(config.url)
}
return config
},
error => {
return Promise.reject(error)
}
)
更多推荐
已为社区贡献5条内容
所有评论(0)