Ajax跨域 CROS处理
2018-06-24 00:15:48来源:未知 阅读 ()
Ajax跨域方法有多种 这里介绍CROS跨域的实际案例
场景:A域名 请求 B域名;
暂且 A为客户端 B为服务端;
请求的服务端必须自己能控制 或者服务器端头部已经添加 Access-Control-Allow-Origin :允许你 的域名
服务端:
header("Access-Control-Allow-Origin:http://www.xxxx.com"); header("Access-Control-Allow-Method:POST,GET,OPTIONS"); header("Access-Control-Allow-Headers:Origin, X-Requested-With, Content-Type, Accept"); header('Access-Control-Allow-Credentials: true');
Access-Control-Allow-Origin 未允许跨域请求的ip或地址
Access-Control-Allow-Method 请求方式
Access-Control-Allow-Headers 支持的头信息字
Access-Control-Allow-Credentials 要想发送Cookie 这个配置必须为true
服务端实现以上配置,客户端基本上可以跨域请求了
客户端:
$.ajax({ url: B域名, dataType: 'json', data: {username:username,password: password}, contentType: 'application/json; charset=utf-8', type: 'get', withCredentials: true, async:true, beforeSend: function(xhr) { xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest'); }, xhrFields:{ withCredentials:true }, success: function(result){ console.log(result); if(result.type == 'success'){ window.location.href='http://we.lb.com/web/'+result.redirect; } }, error: function(error){ console.log(error); }, });
beforeSend: function(xhr) {
xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
},
这个设置是请求头部信息X-Requested-With:XMLHttpRequest,在我的项目里没添加这个 服务端识别不了ajax请求;若能识别忽悠就可以
xhrFields:{ withCredentials:true },
这个设置withCredentials:true, 如果发送Cookie 这个配置必须要有;
参照:http://www.ruanyifeng.com/blog/2016/04/cors.html
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:ES5 - 面向对象编程
- Javascript Ajax异步读取RSS文档具体实现 2020-02-25
- jquery ajax检测用户名是否存在的方法 2020-02-14
- jQuery Ajax使用FormData对象上传文件的方法 2019-11-10
- 关于ajax异步请求的一个细节问题 2019-08-14
- JavaScript AJAX PHP 2019-08-14
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash