收集整理了常見跨域解決方案,歡迎補充指正开睡。
通過jsonp跨域
通常為了減輕web服務器的負載苟耻,我們把js、css婚度,img等靜態(tài)資源分離到另一臺獨立域名的服務器上,在html頁面中再通過相應的標簽從不同域名下加載靜態(tài)資源醋虏,而被瀏覽器允許哮翘,基于此原理,我們可以通過動態(tài)創(chuàng)建script阻课,再請求一個帶參網(wǎng)址實現(xiàn)跨域通信艰匙。
1.)原生實現(xiàn):
<script>
var script = document.createElement('script');
script.type = 'text/javascript';
// 傳參并指定回調(diào)執(zhí)行函數(shù)為onBack
script.src = 'http://www.domain.com:8080/login?user=admin&callback=onBack';
document.head.appendChild(script);
// 回調(diào)執(zhí)行函數(shù)
function onBack(res) {
alert(JSON.stringify(res));
}
</script>
服務端返回如下(返回時即執(zhí)行全局函數(shù)):
onBack({"status": true, "user": "admin"})
2.)jquery ajax:
$.ajax({
url: 'http://www.domain.com:8080/login',
type: 'get',
dataType: 'jsonp', // 請求方式為jsonp
jsonpCallback: "onBack", // 自定義回調(diào)函數(shù)名
data: {}
});
3.)vue.js:
this.$http.jsonp('http://www.domain.com:8080/login', {
params: {},
jsonp: 'onBack'
}).then((res) => {
console.log(res);
})
后端node.js代碼示例:
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...');
document.domain + iframe跨域
此方案僅限主域相同员凝,子域不同的跨域應用場景。
實現(xiàn)原理:兩個頁面都通過js強制設置document.domain為基礎主域健霹,就實現(xiàn)了同域糖埋。
1.)父窗口:(http://www.domain.com/first.html)
<iframe id="iframe" src="http://child.domain.com/second.html"></iframe>
<script>
document.domain = 'domain.com';
var user = 'admin';
</script>
2.)子窗口:(http://child.domain.com/second.html)
<script>
document.domain = 'domain.com';
// 獲取父窗口中變量
alert('get js data from parent ---> ' + window.parent.user);
</script>
location.hash + iframe跨域
實現(xiàn)原理: first與second跨域相互通信,通過中間頁third來實現(xiàn)征候。 三個頁面洒试,不同域之間利用iframe的location.hash傳值,相同域之間直接js訪問來通信。
具體實現(xiàn):A域:first.html -> B域:second.html -> A域:third.html痪宰,first與second不同域只能通過hash值單向通信,second與third也不同域也只能單向通信乖订,但third與first同域具练,所以third可通過parent.parent訪問first頁面所有對象。
1.)first.html:(http://www.domainA.com/first.html)
<iframe id="iframe" src="http://www.domainB.com/second.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的回調(diào)方法
function onCallback(res) {
alert('data from third.html ---> ' + res);
}
</script>
2.)second.html:(http://www.domainB.com/second.html)
<iframe id="iframe" src="http://www.domainA.com/third.html" style="display:none;"></iframe>
<script>
var iframe = document.getElementById('iframe');
// 監(jiān)聽first.html傳來的hash值岂丘,再傳給third.html
window.onhashchange = function () {
iframe.src = iframe.src + location.hash;
};
</script>
3.)third.html:(http://www.domainA.com/third.html)
<script>
// 監(jiān)聽second.html傳來的hash值
window.onhashchange = function () {
// 再通過操作同域first.html的js回調(diào)眠饮,將結果傳回
window.parent.parent.onCallback('hello: ' + location.hash.replace('#user=', ''));
};
</script>
window.name + iframe跨域
window.name屬性的獨特之處:name值在不同的頁面(甚至不同域名)加載后依舊存在,并且可以支持非常長的 name 值(2MB)寨蹋。
1.)first.html:(http://www.domainA.com/first.html)
var proxy = function(url, callback) {
var state = 0;
var iframe = document.createElement('iframe');
// 加載跨域頁面
iframe.src = url;
// onload事件會觸發(fā)2次扔茅,第1次加載跨域頁,并留存數(shù)據(jù)于window.name
iframe.onload = function() {
if (state === 1) {
// 第2次onload(同域proxy頁)成功后评姨,讀取同域window.name中數(shù)據(jù)
callback(iframe.contentWindow.name);
destoryFrame();
} else if (state === 0) {
// 第1次onload(跨域頁)成功后萤晴,切換到同域代理頁面
iframe.contentWindow.location = 'http://www.domainA.com/proxy.html';
state = 1;
}
};
document.body.appendChild(iframe);
// 獲取數(shù)據(jù)以后銷毀這個iframe,釋放內(nèi)存嗦枢;這也保證了安全(不被其他域frame js訪問)
function destoryFrame() {
iframe.contentWindow.document.write('');
iframe.contentWindow.close();
document.body.removeChild(iframe);
}
};
// 請求跨域b頁面數(shù)據(jù)
proxy('http://www.domainB.com/second.html', function(data){
alert(data);
});
2.)proxy.html:(http://www.domainA.com/proxy.html)
中間代理頁屯断,與a.html同域,內(nèi)容為空即可氧秘。
3.)second.html:(http://www.domainB.com/second.html))
<script>
window.name = 'This is domainB data!';
</script>
總結:通過iframe的src屬性由外域轉(zhuǎn)向本地域趴久,跨域數(shù)據(jù)即由iframe的window.name從外域傳遞到本地域。這個就巧妙地繞過了瀏覽器的跨域訪問限制灭忠,但同時它又是安全操作座硕。
postMessage跨域
postMessage是HTML5 XMLHttpRequest Level 2中的API华匾,且是為數(shù)不多可以跨域操作的window屬性之一,它可用于解決以下方面的問題:
1.) 頁面和其打開的新窗口的數(shù)據(jù)傳遞
2.) 多窗口之間消息傳遞
3.) 頁面與嵌套的iframe消息傳遞
4.) 上面三個場景的跨域數(shù)據(jù)傳遞
用法:postMessage(data,origin)方法接受兩個參數(shù)
data: html5規(guī)范支持任意基本類型或可復制的對象,但部分瀏覽器只支持字符串有鹿,所以傳參時最好用JSON.stringify()序列化原杂。
origin: 協(xié)議+主機+端口號,也可以設置為"*"年局,表示可以傳遞給任意窗口咸产,如果要指定和當前窗口同源的話設置為"/"。
1.)first.html:(http://www.domainA.com/first.htm)
<iframe id="iframe" src="http://www.domainB.com/second.html" style="display:none;"></iframe>
<script>
var iframe = document.getElementById('iframe');
iframe.onload = function() {
var data = {
name: 'mk'
};
// 向domainB傳送跨域數(shù)據(jù)
iframe.contentWindow.postMessage(JSON.stringify(data), 'http://www.domainB.com');
};
// 接受domainB返回數(shù)據(jù)
window.addEventListener('message', function(e) {
alert('data from domainB ---> ' + e.data);
}, false);
</script>
2.)second.html:(http://www.domainB.com/second.html)
<script>
// 接收domainA的數(shù)據(jù)
window.addEventListener('message', function(e) {
alert('data from domainA ---> ' + e.data);
var data = JSON.parse(e.data);
if (data) {
data.number = 16;
// 處理后再發(fā)回domainA
window.parent.postMessage(JSON.stringify(data), 'http://www.domainA.com');
}
}, false);
</script>
跨域資源共享(CORS)
普通跨域請求:只服務端設置Access-Control-Allow-Origin即可,前端無須設置屑彻,若要帶cookie請求:前后端都需要設置。
需注意的是:由于同源策略的限制粪薛,所讀取的cookie為跨域請求接口所在域的cookie搏恤,而非當前頁。如果想實現(xiàn)當前頁cookie的寫入熟空,可參考下文: nginx反向代理中設置proxy_cookie_domain 和 NodeJs中間件代理中cookieDomainRewrite參數(shù)的設置息罗。
目前,所有瀏覽器都支持該功能(IE8+:IE8/9需要使用XDomainRequest對象來支持CORS))阱当,CORS也已經(jīng)成為主流的跨域解決方案弊添。
前端設置
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框架
在vue-resource封裝的ajax組件中加入以下代碼:
Vue.http.options.credentials = true
服務端設置
若后端設置成功,前端瀏覽器控制臺則不會出現(xiàn)跨域報錯信息澈圈,反之,說明沒設成功窍帝。
Java后臺:
/*
* 導入包:import javax.servlet.http.HttpServletResponse;
* 接口參數(shù)中定義:HttpServletResponse response
*/
// 允許跨域訪問的域名:若有端口需寫全(協(xié)議+域名+端口)诽偷,若沒有端口末尾不用加'/'
response.setHeader("Access-Control-Allow-Origin", "http://www.domainA.com");
// 允許前端帶認證cookie:啟用此項后,上面的域名不能為'*'深浮,必須指定具體的域名眠冈,否則瀏覽器會提示
response.setHeader("Access-Control-Allow-Credentials", "true");
nginx代理跨域
nginx配置解決iconfont跨域
瀏覽器跨域訪問js、css布卡、img等常規(guī)靜態(tài)資源被同源策略許可雇盖,但iconfont字體文件(eot|otf|ttf|woff|svg)例外,此時可在nginx的靜態(tài)資源服務器中加入以下配置这弧。
location / {
add_header Access-Control-Allow-Origin *;
}
nginx反向代理接口跨域
跨域原理: 同源策略是瀏覽器的安全策略虚汛,不是HTTP協(xié)議的一部分。服務器端調(diào)用HTTP接口只是使用HTTP協(xié)議蛋辈,不會執(zhí)行JS腳本将谊,不需要同源策略,也就不存在跨越問題逞频。
實現(xiàn)思路:通過nginx配置一個代理服務器(域名與domainA相同栋齿,端口不同)做跳板機襟诸,反向代理訪問domainB接口基协,并且可以順便修改cookie中domain信息,方便當前域cookie寫入陷揪,實現(xiàn)跨域登錄杂穷。
nginx具體配置:
#proxy服務器
server {
listen 81;
server_name www.domainA.com;
location / {
proxy_pass http://www.domainB.com:8080; #反向代理
proxy_cookie_domain www.domainB.com www.domainA.com; #修改cookie里域名
index index.html index.htm;
# 當用webpack-dev-server等中間件代理接口訪問nignx時亭畜,此時無瀏覽器參與,故沒有同源限制拴鸵,下面的跨域配置可不啟用
add_header Access-Control-Allow-Origin http://www.domainA.com; #當前端只跨域不帶cookie時,可為*
add_header Access-Control-Allow-Credentials true;
}
}
1.) 前端代碼示例:
var xhr = new XMLHttpRequest();
// 前端開關:瀏覽器是否讀寫cookie
xhr.withCredentials = true;
// 訪問nginx中的代理服務器
xhr.open('get', 'http://www.domainA.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=123456;Path=/;Domain=www.domainB.com;HttpOnly' // HttpOnly:腳本無法讀取
});
res.write(JSON.stringify(params));
res.end();
});
server.listen('8080');
console.log('Server is running at port 8080...');