axios设置请求头内容

来源:互联网 发布:c 语言中的删除文件 编辑:程序博客网 时间:2024/06/17 06:18

版权声明:此文首发于我的个人站axios设置请求头内容,转载请注明出处。

axios设置请求头中的Authorization 和 cookie 信息:

GET请求

axios.get(urlString,     {        headers: {            'Authorization': 'Bearer ' + token,            "Cookie" : 'sessionId=' + sessionId + '; recId=' + recId,            ...        },        params: {            param1: string,            param2: string        },        ...    }).then(res => fn).catch(e => fn)

POST请求

axios.post(urlString,     {        data: data,        ...    },    {        headers: {            'Authorization': 'Bearer ' + token,            "Cookie" : 'sessionId=' + sessionId + '; recId=' + recId,            ...        }    }).then(res => fn).catch(e => fn)
原创粉丝点击