axios设置请求头内容
Posted 哓番茄
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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)
以上是关于axios设置请求头内容的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段14——Vue的axios网络请求封装