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); });