做個收錄,方便以后復盤。
本文轉自:前端常見跨域解決方案(全)篡九。
什么是跨域?
跨域是指一個域下的文檔或腳本試圖去請求另一個域下的資源醋奠,這里跨域是廣義的榛臼。
廣義的跨域:
1.) 資源跳轉: A鏈接、重定向窜司、表單提交
2.) 資源嵌入: <link>沛善、<script>、<img>塞祈、<frame>等dom標簽金刁,還有樣式中background:url()、@font-face()等文件外鏈
3.) 腳本請求: js發(fā)起的ajax請求议薪、dom和js對象的跨域操作等
其實我們通常所說的跨域是狹義的尤蛮,是由瀏覽器同源策略限制的一類請求場景。
什么是同源策略斯议?
同源策略/SOP(Same origin policy)是一種約定产捞,由Netscape公司1995年引入瀏覽器,它是瀏覽器最核心也最基本的安全功能哼御,如果缺少了同源策略坯临,瀏覽器很容易受到XSS焊唬、CSFR等攻擊。所謂同源是指"協(xié)議+域名+端口"三者相同看靠,即便兩個不同的域名指向同一個ip地址求晶,也非同源。
同源策略限制以下幾種行為:
1.) Cookie衷笋、LocalStorage 和 IndexDB 無法讀取
2.) DOM 和 Js對象無法獲得
3.) AJAX 請求不能發(fā)送
常見的跨域場景
URL 說明 是否允許通信
http://www.domain.com/a.js
http://www.domain.com/b.js 同一域名,不同文件或路徑 允許
http://www.domain.com/lab/c.js
http://www.domain.com:8000/a.js
http://www.domain.com/b.js 同一域名矩屁,不同端口 不允許
http://www.domain.com/a.js
https://www.domain.com/b.js 同一域名辟宗,不同協(xié)議 不允許
http://www.domain.com/a.js
http://192.168.4.12/b.js 域名和域名對應相同ip 不允許
http://www.domain.com/a.js
http://x.domain.com/b.js 主域相同,子域不同 不允許
http://domain.com/c.js
http://www.domain1.com/a.js
http://www.domain2.com/b.js 不同域名 不允許
跨域解決方案
1吝秕、 通過jsonp跨域
2泊脐、 document.domain + iframe跨域
3、 location.hash + iframe
4烁峭、 window.name + iframe跨域
5容客、 postMessage跨域
6、 跨域資源共享(CORS)
7约郁、 nginx代理跨域
8缩挑、 nodejs中間件代理跨域
9、 WebSocket協(xié)議跨域
10鬓梅、Flash代理跨域(很少用)
一供置、通過 jsonp 跨域
通常為了減輕web服務器的負載,我們把js绽快、css芥丧,img等靜態(tài)資源分離到另一臺獨立域名的服務器上,在html頁面中再通過相應的標簽從不同域名下加載靜態(tài)資源坊罢,而被瀏覽器允許续担,基于此原理,我們可以通過動態(tài)創(chuàng)建script活孩,再請求一個帶參網址實現跨域通信物遇。
1.)原生實現:
<script>
var script = document.createElement('script');
script.type = 'text/javascript';
// 傳參一個回調函數名給后端,方便后端返回時執(zhí)行這個在前端定義的回調函數
script.src = 'http://www.domain2.com:8080/login?user=admin&callback=handleCallback';
document.head.appendChild(script);
// 回調執(zhí)行函數
function handleCallback(res) {
alert(JSON.stringify(res));
}
</script>
服務端返回如下(返回時即執(zhí)行全局函數):
handleCallback({"status": true, "user": "admin"})
2.)jquery ajax:
$.ajax({
url: 'http://www.domain2.com:8080/login',
type: 'get',
dataType: 'jsonp', // 請求方式為jsonp
jsonpCallback: "handleCallback", // 自定義回調函數名
data: {}
});
3.)vue.js:
this.$http.jsonp('http://www.domain2.com:8080/login', {
params: {},
jsonp: 'handleCallback'
}).then((res) => {
console.log(res);
})
后端node.js代碼示例:
var querystring = require('querystring');
var http = require('http');
var server = http.createServer();
server.on('request', function(req, res) {
var params = qs.parse(req.url.split('?')[1]);
var fn = params.callback;
// jsonp返回設置
res.writeHead(200, { 'Content-Type': 'text/javascript' });
res.write(fn + '(' + JSON.stringify(params) + ')');
res.end();
});
server.listen('8080');
console.log('Server is running at port 8080...');
jsonp缺點:只能實現get一種請求诱鞠。
二挎挖、document.domain + iframe跨域
此方案僅限主域相同,子域不同的跨域應用場景航夺。
實現原理:兩個頁面都通過js強制設置 document.domain 為基礎主域蕉朵,就實現了同域。
1.)父窗口:(http://www.domain.com/a.html))
<iframe id="iframe" src="http://child.domain.com/b.html"></iframe>
<script>
document.domain = 'domain.com';
var user = 'admin';
</script>
2.)子窗口:(http://child.domain.com/b.html))
<script>
document.domain = 'domain.com';
// 獲取父窗口中變量
alert('get js data from parent ---> ' + window.parent.user);
</script>
三阳掐、 location.hash + iframe跨域
實現原理: a欲與b跨域相互通信始衅,通過中間頁c來實現冷蚂。 三個頁面,不同域之間利用 iframe 的 location.hash 傳值汛闸,相同域之間直接js訪問來通信蝙茶。
具體實現:A域:a.html -> B域:b.html -> A域:c.html,a 與 b 不同域只能通過hash值單向通信诸老,b 與 c 也不同域也只能單向通信隆夯,但 c 與 a 同域,所以 c 可通過 parent.parent 訪問 a 頁面所有對象别伏。
1.)a.html:(http://www.domain1.com/a.html)
<iframe id="iframe" src="http://www.domain2.com/b.html" style="display:none;"></iframe>
<script>
var iframe = document.getElementById('iframe');
// 向b.html傳hash值
setTimeout(function() {
iframe.src = iframe.src + '#user=admin';
}, 1000);
// 開放給同域c.html的回調方法
function onCallback(res) {
alert('data from c.html ---> ' + res);
}
</script>
2.)b.html:(http://www.domain2.com/b.html)
<iframe id="iframe" src="http://www.domain1.com/c.html" style="display:none;"></iframe>
<script>
var iframe = document.getElementById('iframe');
// 監(jiān)聽a.html傳來的hash值蹄衷,再傳給c.html
window.onhashchange = function () {
iframe.src = iframe.src + location.hash;
};
</script>
3.)c.html:(http://www.domain1.com/c.html)
<script>
// 監(jiān)聽b.html傳來的hash值
window.onhashchange = function () {
// 再通過操作同域a.html的js回調,將結果傳回
window.parent.parent.onCallback('hello: ' + location.hash.replace('#user=', ''));
};
</script>
四厘肮、 window.name + iframe跨域
window.name屬性的獨特之處:name值在不同的頁面(甚至不同域名)加載后依舊存在愧口,并且可以支持非常長的 name 值(2MB)。
1.)a.html:(http://www.domain1.com/a.html)
var proxy = function(url, callback) {
var state = 0;
var iframe = document.createElement('iframe');
// 加載跨域頁面
iframe.src = url;
// onload事件會觸發(fā)2次类茂,第1次加載跨域頁耍属,并留存數據于window.name
iframe.onload = function() {
if (state === 1) {
// 第2次onload(同域proxy頁)成功后,讀取同域window.name中數據
callback(iframe.contentWindow.name);
destoryFrame();
} else if (state === 0) {
// 第1次onload(跨域頁)成功后巩检,切換到同域代理頁面
iframe.contentWindow.location = 'http://www.domain1.com/proxy.html';
state = 1;
}
};
document.body.appendChild(iframe);
// 獲取數據以后銷毀這個iframe厚骗,釋放內存;這也保證了安全(不被其他域frame js訪問)
function destoryFrame() {
iframe.contentWindow.document.write('');
iframe.contentWindow.close();
document.body.removeChild(iframe);
}
};
// 請求跨域b頁面數據
proxy('http://www.domain2.com/b.html', function(data){
alert(data);
});
2.)proxy.html:(http://www.domain1.com/proxy....)
中間代理頁碴巾,與a.html同域溯捆,內容為空即可。
3.)b.html:(http://www.domain2.com/b.html)
<script>
window.name = 'This is domain2 data!';
</script>
總結:通過iframe的src屬性由外域轉向本地域厦瓢,跨域數據即由iframe的window.name從外域傳遞到本地域提揍。這個就巧妙地繞過了瀏覽器的跨域訪問限制,但同時它又是安全操作煮仇。
五劳跃、 postMessage跨域
postMessage是HTML5 XMLHttpRequest Level 2中的API,且是為數不多可以跨域操作的window屬性之一浙垫,它可用于解決以下方面的問題:
a.) 頁面和其打開的新窗口的數據傳遞
b.) 多窗口之間消息傳遞
c.) 頁面與嵌套的iframe消息傳遞
d.) 上面三個場景的跨域數據傳遞
用法:postMessage(data,origin)方法接受兩個參數
data: html5規(guī)范支持任意基本類型或可復制的對象刨仑,但部分瀏覽器只支持字符串,所以傳參時最好用JSON.stringify()序列化夹姥。
origin: 協(xié)議+主機+端口號杉武,也可以設置為"*",表示可以傳遞給任意窗口辙售,如果要指定和當前窗口同源的話設置為"/"轻抱。
1.)a.html:(http://www.domain1.com/a.html)
<iframe id="iframe" src="http://www.domain2.com/b.html" style="display:none;"></iframe>
<script>
var iframe = document.getElementById('iframe');
iframe.onload = function() {
var data = {
name: 'aym'
};
// 向domain2傳送跨域數據
iframe.contentWindow.postMessage(JSON.stringify(data), 'http://www.domain2.com');
};
// 接受domain2返回數據
window.addEventListener('message', function(e) {
alert('data from domain2 ---> ' + e.data);
}, false);
</script>
2.)b.html:(http://www.domain2.com/b.html)
<script>
// 接收domain1的數據
window.addEventListener('message', function(e) {
alert('data from domain1 ---> ' + e.data);
var data = JSON.parse(e.data);
if (data) {
data.number = 16;
// 處理后再發(fā)回domain1
window.parent.postMessage(JSON.stringify(data), 'http://www.domain1.com');
}
}, false);
</script>
六、 跨域資源共享(CORS)
普通跨域請求:只服務端設置 Access-Control-Allow-Origin 即可旦部,前端無須設置祈搜,若要帶 cookie 請求:前后端都需要設置较店。
需注意的是:由于同源策略的限制,所讀取的 cookie 為跨域請求接口所在域的 cookie容燕,而非當前頁梁呈。如果想實現當前頁 cookie 的寫入,可參考下文:七蘸秘、nginx 反向代理中設置 proxy_cookie_domain 和 八官卡、NodeJs 中間件代理中 cookieDomainRewrite 參數的設置。
目前醋虏,所有瀏覽器都支持該功能(IE8+:IE8/9 需要使用 XDomainRequest 對象來支持CORS)味抖,CORS 也已經成為主流的跨域解決方案。
1灰粮、 前端設置:
1.)原生ajax
// 前端設置是否帶cookie
xhr.withCredentials = true;
示例代碼:
var xhr = new XMLHttpRequest(); // IE8/9需用window.XDomainRequest兼容
// 前端設置是否帶cookie
xhr.withCredentials = true;
xhr.open('post', 'http://www.domain2.com:8080/login', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.send('user=admin');
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
alert(xhr.responseText);
}
};
2.)jQuery ajax
$.ajax({
...
xhrFields: {
withCredentials: true // 前端設置是否帶cookie
},
crossDomain: true, // 會讓請求頭中包含跨域的額外信息,但不會含cookie
...
});
3.)vue框架
a.) axios設置:
axios.defaults.withCredentials = true
b.) vue-resource設置:
Vue.http.options.credentials = true
2忍坷、 服務端設置:
若后端設置成功粘舟,前端瀏覽器控制臺則不會出現跨域報錯信息,反之佩研,說明沒設成功柑肴。
1.)Java后臺:
/*
* 導入包:import javax.servlet.http.HttpServletResponse;
* 接口參數中定義:HttpServletResponse response
*/
// 允許跨域訪問的域名:若有端口需寫全(協(xié)議+域名+端口),若沒有端口末尾不用加'/'
response.setHeader("Access-Control-Allow-Origin", "http://www.domain1.com");
// 允許前端帶認證cookie:啟用此項后旬薯,上面的域名不能為'*'晰骑,必須指定具體的域名,否則瀏覽器會提示
response.setHeader("Access-Control-Allow-Credentials", "true");
// 提示OPTIONS預檢時绊序,后端需要設置的兩個常用自定義頭
response.setHeader("Access-Control-Allow-Headers", "Content-Type,X-Requested-With");
2.)Nodejs后臺示例:
var http = require('http');
var server = http.createServer();
var qs = require('querystring');
server.on('request', function(req, res) {
var postData = '';
// 數據塊接收中
req.addListener('data', function(chunk) {
postData += chunk;
});
// 數據接收完畢
req.addListener('end', function() {
postData = qs.parse(postData);
// 跨域后臺設置
res.writeHead(200, {
'Access-Control-Allow-Credentials': 'true', // 后端允許發(fā)送Cookie
'Access-Control-Allow-Origin': 'http://www.domain1.com', // 允許訪問的域(協(xié)議+域名+端口)
/*
* 此處設置的cookie還是domain2的而非domain1硕舆,因為后端也不能跨域寫cookie(nginx反向代理可以實現),
* 但只要domain2中寫入一次cookie認證骤公,后面的跨域接口都能從domain2中獲取cookie抚官,從而實現所有的接口都能跨域訪問
*/
'Set-Cookie': 'l=a123456;Path=/;Domain=www.domain2.com;HttpOnly' // HttpOnly的作用是讓js無法讀取cookie
});
res.write(JSON.stringify(postData));
res.end();
});
});
server.listen('8080');
console.log('Server is running at port 8080...');
七、 nginx代理跨域
1阶捆、 nginx 配置解決 iconfont 跨域
瀏覽器跨域訪問 js凌节、css、img 等常規(guī)靜態(tài)資源被同源策略許可洒试,但 iconfont 字體文件 (eot|otf|ttf|woff|svg) 例外倍奢,此時可在 nginx 的靜態(tài)資源服務器中加入以下配置。
location / {
add_header Access-Control-Allow-Origin *;
}
2垒棋、 nginx 反向代理接口跨域
跨域原理: 同源策略是瀏覽器的安全策略卒煞,不是HTTP協(xié)議的一部分。服務器端調用HTTP接口只是使用HTTP協(xié)議捕犬,不會執(zhí)行JS腳本跷坝,不需要同源策略酵镜,也就不存在跨越問題。
實現思路:通過 nginx 配置一個代理服務器(域名與 domain1 相同柴钻,端口不同)做跳板機淮韭,反向代理訪問 domain2 接口,并且可以順便修改 cookie 中 domain 信息贴届,方便當前域 cookie 寫入靠粪,實現跨域登錄。
nginx具體配置:
#proxy服務器
server {
listen 81;
server_name www.domain1.com;
location / {
proxy_pass http://www.domain2.com:8080; #反向代理
proxy_cookie_domain www.domain2.com www.domain1.com; #修改cookie里域名
index index.html index.htm;
# 當用webpack-dev-server等中間件代理接口訪問nignx時毫蚓,此時無瀏覽器參與占键,故沒有同源限制,下面的跨域配置可不啟用
add_header Access-Control-Allow-Origin http://www.domain1.com; #當前端只跨域不帶cookie時元潘,可為*
add_header Access-Control-Allow-Credentials true;
}
}
1.) 前端代碼示例:
var xhr = new XMLHttpRequest();
// 前端開關:瀏覽器是否讀寫cookie
xhr.withCredentials = true;
// 訪問nginx中的代理服務器
xhr.open('get', 'http://www.domain1.com:81/?user=admin', true);
xhr.send();
2.) Nodejs后臺示例:
var http = require('http');
var server = http.createServer();
var qs = require('querystring');
server.on('request', function(req, res) {
var params = qs.parse(req.url.substring(2));
// 向前臺寫cookie
res.writeHead(200, {
'Set-Cookie': 'l=a123456;Path=/;Domain=www.domain2.com;HttpOnly' // HttpOnly:腳本無法讀取
});
res.write(JSON.stringify(params));
res.end();
});
server.listen('8080');
console.log('Server is running at port 8080...');
八畔乙、 Nodejs中間件代理跨域
node 中間件實現跨域代理,原理大致與 nginx 相同翩概,都是通過啟一個代理服務器牲距,實現數據的轉發(fā),也可以通過設置 cookieDomainRewrite 參數修改響應頭中 cookie 中域名钥庇,實現當前域的 cookie 寫入牍鞠,方便接口登錄認證。
1评姨、 非vue框架的跨域(2次跨域)
利用 node + express + http-proxy-middleware 搭建一個 proxy 服務器难述。
1.)前端代碼示例:
var xhr = new XMLHttpRequest();
// 前端開關:瀏覽器是否讀寫cookie
xhr.withCredentials = true;
// 訪問http-proxy-middleware代理服務器
xhr.open('get', 'http://www.domain1.com:3000/login?user=admin', true);
xhr.send();
2.)中間件服務器:
var express = require('express');
var proxy = require('http-proxy-middleware');
var app = express();
app.use('/', proxy({
// 代理跨域目標接口
target: 'http://www.domain2.com:8080',
changeOrigin: true,
// 修改響應頭信息,實現跨域并允許帶cookie
onProxyRes: function(proxyRes, req, res) {
res.header('Access-Control-Allow-Origin', 'http://www.domain1.com');
res.header('Access-Control-Allow-Credentials', 'true');
},
// 修改響應信息中的cookie域名
cookieDomainRewrite: 'www.domain1.com' // 可以為false吐句,表示不修改
}));
app.listen(3000);
console.log('Proxy server is listen at port 3000...');
3.)Nodejs后臺同(六:nginx)
2胁后、 vue框架的跨域(1次跨域)
利用 node + webpack + webpack-dev-server 代理接口跨域。在開發(fā)環(huán)境下嗦枢,由于 vue 渲染服務和接口代理服務都是 webpack-dev-server 同一個择同,所以頁面與代理接口之間不再跨域,無須設置 headers 跨域信息了净宵。
webpack.config.js部分配置:
module.exports = {
entry: {},
module: {},
...
devServer: {
historyApiFallback: true,
proxy: [{
context: '/login',
target: 'http://www.domain2.com:8080', // 代理跨域目標接口
changeOrigin: true,
secure: false, // 當代理某些https服務報錯時用
cookieDomainRewrite: 'www.domain1.com' // 可以為false敲才,表示不修改
}],
noInfo: true
}
}
九、 WebSocket 協(xié)議跨域
WebSocket protocol 是HTML5一種新的協(xié)議择葡。它實現了瀏覽器與服務器全雙工通信紧武,同時允許跨域通訊,是 server push 技術的一種很好的實現敏储。
原生 WebSocket API 使用起來不太方便阻星,我們使用 Socket.io,它很好地封裝了 webSocket 接口,提供了更簡單妥箕、靈活的接口滥酥,也對不支持 webSocket 的瀏覽器提供了向下兼容。
1.)前端代碼:
<div>user input:<input type="text"></div>
<script src="https://cdn.bootcss.com/socket.io/2.2.0/socket.io.js"></script>
<script>
var socket = io('http://www.domain2.com:8080');
// 連接成功處理
socket.on('connect', function() {
// 監(jiān)聽服務端消息
socket.on('message', function(msg) {
console.log('data from server: ---> ' + msg);
});
// 監(jiān)聽服務端關閉
socket.on('disconnect', function() {
console.log('Server socket has closed.');
});
});
document.getElementsByTagName('input')[0].onblur = function() {
socket.send(this.value);
};
</script>
2.)Nodejs socket 后臺:
var http = require('http');
var socket = require('socket.io');
// 啟http服務
var server = http.createServer(function(req, res) {
res.writeHead(200, {
'Content-type': 'text/html'
});
res.end();
});
server.listen('8080');
console.log('Server is running at port 8080...');
// 監(jiān)聽socket連接
socket.listen(server).on('connection', function(client) {
// 接收信息
client.on('message', function(msg) {
client.send('hello:' + msg);
console.log('data from client: ---> ' + msg);
});
// 斷開處理
client.on('disconnect', function() {
console.log('Client socket has closed.');
});
});