axios get,post请求时带headers
Posted 狼来了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios get,post请求时带headers相关的知识,希望对你有一定的参考价值。
axios post请求时带headers:
axios.post("http://xxx.com/xxx/xxx/xxx?", { ‘queslistid‘: this.kemuid }, { headers: { ‘token‘: Cookies.get(‘token‘), ‘platform‘: ‘web‘ } } ).then((login) => { console.log(login) });
axios get请求时带headers:
axios.get("http://xxx.com/xxx/?", { params: { id: this.kemuid }, headers: { token: Cookies.get(‘token‘), platform: ‘web‘ } } ).then((res) => { console.log(res); });
以上是关于axios get,post请求时带headers的主要内容,如果未能解决你的问题,请参考以下文章