ajax设置自定义请求头
Posted 無玑小姐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax设置自定义请求头相关的知识,希望对你有一定的参考价值。
1,
$.ajax({ url:apiUrl, type:"get", timeout : 5000, //超时时间设置,单位毫秒 dataType: "json", beforeSend: function(xhr) { xhr.setRequestHeader("Authorization", "Bearer "+obj.data); xhr.setRequestHeader("Accept", "application/json"); }, success:function(obj){ dealApiInterfaceResult(resourceId, obj); } })
2,
$.ajax({ url:apiUrl, type:"get", timeout : 5000, //超时时间设置,单位毫秒 dataType: "json", headers: { ‘Authorization‘:"Bearer "+obj.data, ‘Accept‘:"application/json" }, success:function(obj){ dealApiInterfaceResult(resourceId, obj); } })
以上是关于ajax设置自定义请求头的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段14——Vue的axios网络请求封装
VSCode自定义代码片段14——Vue的axios网络请求封装