IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> 跨域如此简单 -> 正文阅读

[JavaScript知识库]跨域如此简单

一、跨域

??跨域即是当前的 web 应用访问了不属于当前 web 应用的接口资源时,浏览器的对资源的一种保护作用。

Failed to load http://localhost:8080/test: No 'Access-Control-Allow-Origin' header is present on the requested resource. 
Origin 'http://127.0.0.1:8020' is therefore not allowed access.

??原因是服务端响应的响应头没有告诉浏览器,该资源不允许被跨域调用。

??跨域是浏览器的一种安全保护机制,后台之间相互调用不存在跨域问题。跨域通常有如下几种解决办法。

二、代理

??vue 开发时有一个这样的配置 config/index.js ,这是使用 node.js 的代理功能。即页面请求还是请求本地,本地有一个代理服务将请求代理到目标服务器上。通过这种方式,把原来的前后台跨域调用变为后台与后台之间的跨域调用,由于跨域报错问题只存在浏览器上,后台调用正常进行,所以问题便被解决。

proxyTable: {
    '/api': {
        target:'http://localhost:8080/',
        changeOrigin: true,
         pathRewrite: {
          '^/api': '/'
        }
    } 
}

??在实际开发中,通常也会使用 nginx 的反向代理功能解决跨域问题。

location ^~ / {			
    proxy_pass http://127.0.0.1:8080/;		
}

三、jsonp

??jsonp 的原理是当前 web 应用可以请求其他 web 应用的 JavaScript 脚本资源,如果我们把数据放在。

$.ajax("http://127.0.0.1:8080/test", {
    type: "get",
    dataType: "jsonp",
    success: function (data) {
        alert(JSON.stringify(data))
    }
})

??使用 jsonp 时浏览器会给当前 html 文件创建一个路径为 jsonp 路径的 js 脚本,浏览器就去请求对应的脚本

window.onload = function () {
  addScriptTag('http:/127.0.0.1:8080/test?callback=foo');
}

??请求到的脚本格式如下

foo({
  "test": "testData"
});

??数据就包含在一个方法中,jQuery 就能获取到方法中,也就是后台传过来的数据,这种方式是除代理外兼容性最好的解决方案。

四、服务端允许跨域

??满足浏览器跨域要求,即在响应头中加入Access-Control-Allow-Origin

response.setHeader("Access-Control-Allow-Origin", "*");

??响应头如下:
在这里插入图片描述
??在 spring mvc 中只需要在控制器类上加一个 @CrossOrigin 注解即可解决。

五、携带 cookies 的跨域

??jQuery 的 ajax 携带 cookies 时,使用参数 xhrFields: { withCredentials: true }表示在跨域请求时带上 cookies 凭证。

$.ajax({
    type: "post",
    url: "http://127.0.0.1:8080/test",
    xhrFields: {
        withCredentials: true
    },
    success: function(data) {
        alert(data)
    }
});

??浏览器报如下错误:

Failed to load http://localhost:8080/test: The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' 
when the request's credentials mode is 'include'. Origin 'http://127.0.0.1:8020' is therefore not allowed access. 
The credentials mode of requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute.

??大致意思是带 cookies 凭证时Access-Control-Allow-Origin 不能为 *,必须为当前请求的主机,当前的主机在请求头里面有,所以就有。

String origin = request.getHeader("Origin");
response.setHeader("Access-Control-Allow-Origin", origin);

??修改后刷新页面发现还在报错

Failed to load http://localhost:8080/test: The value of the 'Access-Control-Allow-Credentials' header in the response is '' 
which must be 'true' when the request's credentials mode is 'include'. Origin 'http://127.0.0.1:8020' is therefore not allowed access. 
The credentials mode of requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute.

??大致意思是跨域请求携带 cookies 凭证时 Access-Control-Allow-Credentials 必须为 true

response.setHeader("Access-Control-Allow-Credentials", "true");

??请求成功,总配置如下

String origin = request.getHeader("Origin");
response.setHeader("Access-Control-Allow-Origin", origin);
response.setHeader("Access-Control-Allow-Credentials", "true");

六、携带自定义头的跨域

??当有一些特殊需求如请求头加入一些用户数据时,发现跨域又不能用了,而且发请求前会发送一个类型为Request Method:OPTIONS的预检请求

$.ajax({
    type: "post",
    url: "http://localhost:8080/test",
    headers: {
        'userId': '1'
    },
    xhrFields: {
        withCredentials: true
    },
    async: true,
    success: function(data) {
        alert(data)
    }
});

??发现跨域又不能用了

Failed to load http://localhost:8080/test: Response to preflight request doesn't pass access control check: 
No 'Access-Control-Allow-Origin' header is present on the requested resource. 
Origin 'http://127.0.0.1:8020' is therefore not allowed access. The response had HTTP status code 403.

??原因是预检时请求头不匹配,只需在拦截器或过滤器里面加入如下即可。

String origin = request.getHeader("Origin");
String header = request.getHeader("Access-Control-Request-Headers");
response.addHeader("Access-Control-Allow-Methods", "*");
response.addHeader("Access-Control-Max-Age", "600");//预检请求的结果缓存10分钟
response.addHeader("Access-Control-Allow-Origin", origin);
response.addHeader("Access-Control-Allow-Credentials", "true");
response.addHeader("Access-Control-Allow-Headers", header);
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-02-28 15:20:07  更:2022-02-28 15:23:34 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 8:26:02-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码