博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CORS跨域cookie传递
阅读量:5012 次
发布时间:2019-06-12

本文共 747 字,大约阅读时间需要 2 分钟。

服务端

Access-Control-Allow-Credentials:trueAccess-Control-Allow-Methods:*Access-Control-Allow-Origin:http://a.xxx.com

客户端

1. jquery

$.ajax({    url: '...',    type: 'get',    xhrFields: {        withCredentials: true    },    crossDomain: true,    dataType: 'application/json; charset=utf-8'});

如果是http post,ajax的请求参数中contentType不能用applicaion/json,要用application/x-www-form-urlencoded

2. vue-resource

1、全局拦截器过滤

Vue.http.interceptors.push(function(request, next) {
//拦截器 // 跨域携带cookie request.credentials = true; next()});

2、全局选项设置

Vue.http.options.xhr = { withCredentials: true }

3、单个请求设置

this.$http.get('xxxx',{params: {},credentials: true})this.$http.jsonp('...', { credentials: true })

 

转载于:https://www.cnblogs.com/mengff/p/8341854.html

你可能感兴趣的文章
笔记1126ASP.NET面试题(转)
查看>>
考研路茫茫--单词情结 - HDU 2243(AC自动机+矩阵乘法)
查看>>
HTTP运行期与页面执行模型
查看>>
tableView优化方案
查看>>
近期思考(2019.07.20)
查看>>
Apache2.4使用require指令进行访问控制
查看>>
冗余关系_并查集
查看>>
做最好的自己(Be Your Personal Best)
查看>>
如何搭建github+hexo博客-转
查看>>
HW2.2
查看>>
将Windows Server 2016 打造成工作站(20161030更新)
查看>>
5大主浏览器css3和html5兼容性大比拼
查看>>
hdu-5894 hannnnah_j’s Biological Test(组合数学)
查看>>
scss常规用法
查看>>
css定位position属性深究
查看>>
android中不同版本兼容包的区别
查看>>
Static 与 new 的问题【待解决】
查看>>
xml
查看>>
在 mvc4 WebApi 中 json 的 跨域访问
查看>>
敏捷开发文章读后感
查看>>