码迷,mamicode.com
首页 > 移动开发 > 详细

axios设置请求头内容

时间:2018-06-10 18:36:14      阅读:1407      评论:0      收藏:0      [点我收藏+]

标签:url   style   header   axios   IV   ram   ESS   ssi   Nid   

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设置请求头内容

标签:url   style   header   axios   IV   ram   ESS   ssi   Nid   

原文地址:https://www.cnblogs.com/Tohold/p/9163783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!