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的主要内容,如果未能解决你的问题,请参考以下文章

axios.get怎么传headers

vue 对axios get pust put delete 封装

使用 Axios 发布请求的 JWT 授权

HTTP请求头(Header)参数

使用axios发起get请求和post请求

使用 Auth Headers 发送 axios get 请求时出现 401 错误