前端跨域解決方案分享

來源:互聯網
上載者:User
跨域是指一個域下的文檔或指令碼試圖去請求另一個域下的資源,這裡跨域是廣義的。本文主要和大家分享前端跨域解決方案希望能協助到大家。

廣義的跨域:

1.) 資源跳轉: A連結、重新導向、表單提交
2.) 資源嵌入: <link>、<script>、<img>、<frame>等dom標籤,還有樣式中background:url()、@font-face()等檔案外鏈
3.) 指令碼請求: js發起的ajax請求、dom和js對象的跨網域作業等

其實我們通常所說的跨域是狹義的,是由瀏覽器同源策略限制的一類請求情境。

什麼是同源策略?
同源策略/SOP(Same origin policy)是一種約定,由Netscape公司1995年引入瀏覽器,它是瀏覽器最核心也最基本的安全功能,如果缺少了同源策略,瀏覽器很容易受到XSS、CSFR等攻擊。所謂同源是指"協議+網域名稱+連接埠"三者相同,即便兩個不同的網域名稱指向同一個ip地址,也非同源。

同源策略限制以下幾種行為:

1.) Cookie、LocalStorage 和 IndexDB 無法讀取2.) DOM 和 Js對象無法獲得3.) AJAX 請求不能發送

常見跨域情境

URL                                      說明                    是否允許通訊http://www.domain.com/a.jshttp://www.domain.com/b.js         同一網域名稱,不同檔案或路徑           允許http://www.domain.com/lab/c.jshttp://www.domain.com:8000/a.jshttp://www.domain.com/b.js         同一網域名稱,不同連接埠                不允許 http://www.domain.com/a.jshttps://www.domain.com/b.js        同一網域名稱,不同協議                不允許 http://www.domain.com/a.jshttp://192.168.4.12/b.js           網域名稱和網域名稱對應相同ip              不允許 http://www.domain.com/a.jshttp://x.domain.com/b.js           主域相同,子域不同                不允許http://domain.com/c.js http://www.domain1.com/a.jshttp://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協議跨域

一、 通過jsonp跨域

通常為了減輕web伺服器的負載,我們把js、css,img等靜態資源分離到另一台獨立網域名稱的伺服器上,在html頁面中再通過相應的標籤從不同網域名稱下載入靜態資源,而被瀏覽器允許,基於此原理,我們可以通過動態建立script,再請求一個帶參網址實現跨域通訊。

1.)原生實現:

 <script>    var script = document.createElement('script');    script.type = 'text/javascript';    // 傳參並指定回調執行函數為onBack    script.src = 'http://www.domain2.com:8080/login?user=admin&callback=onBack';    document.head.appendChild(script);    // 回調執行函數    function onBack(res) {        alert(JSON.stringify(res));    } </script>

服務端返回如下(返回時即執行全域函數):

onBack({"status": true, "user": "admin"})

2.)jquery ajax:

$.ajax({    url: 'http://www.domain2.com:8080/login',    type: 'get',    dataType: 'jsonp',  // 請求方式為jsonp    jsonpCallback: "onBack",    // 自訂回呼函數名    data: {}});

3.)vue.js:

this.$http.jsonp('http://www.domain2.com:8080/login', {    params: {},    jsonp: 'onBack'}).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');    // 監聽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>    // 監聽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事件會觸發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規範支援任意基本類型或可複製的對象,但部分瀏覽器只支援字串,所以傳參時最好用JSON.stringify()序列化。
origin: 協議+主機+連接埠號碼,也可以設定為"*",表示可以傳遞給任意視窗,如果要指定和當前視窗同源的話設定為"/"。

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;            // 處理後再發回domain1            window.parent.postMessage(JSON.stringify(data), 'http://www.domain1.com');        }    }, false);</script>

六、 跨域資源共用(CORS)

普通跨域請求:只服務端設定Access-Control-Allow-Origin即可,前端無須設定,若要帶cookie請求:前後端都需要設定。

需注意的是:由於同源策略的限制,所讀取的cookie為跨域請求介面所在域的cookie,而非當前頁。如果想實現當前頁cookie的寫入,可參考下文:七、nginx反向 Proxy中設定proxy_cookie_domain 和 八、NodeJs中介軟體代理中cookieDomainRewrite參數的設定。

目前,所有瀏覽器都支援該功能(IE8+:IE8/9需要使用XDomainRequest對象來支援CORS)),CORS也已經成為主流的跨域解決方案。

1、 前端設定:

1.)原生ajax

// 前端設定是否帶cookiexhr.withCredentials = true;

範例程式碼:

var xhr = new XMLHttpRequest(); // IE8/9需用window.XDomainRequest相容// 前端設定是否帶cookiexhr.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
2、 服務端設定:

若後端設定成功,前端瀏覽器控制台則不會出現跨域報錯資訊,反之,說明沒設成功。

1.)Java後台:

/* * 匯入包:import javax.servlet.http.HttpServletResponse; * 介面參數中定義:HttpServletResponse response */response.setHeader("Access-Control-Allow-Origin", "http://www.domain1.com");  // 若有連接埠需寫全(協議+網域名稱+連接埠)response.setHeader("Access-Control-Allow-Credentials", "true");

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',     // 後端允許發送Cookie            'Access-Control-Allow-Origin': 'http://www.domain1.com',    // 允許訪問的域(協議+網域名稱+連接埠)            'Set-Cookie': 'l=a123456;Path=/;Domain=www.domain2.com;HttpOnly'   // HttpOnly:指令碼無法讀取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等常規靜態資源被同源策略許可,但iconfont字型檔(eot|otf|ttf|woff|svg)例外,此時可在nginx的靜態資源伺服器中加入以下配置。

location / {  add_header Access-Control-Allow-Origin *;}
2、 nginx反向 Proxy介面跨域

跨域原理: 同源策略是瀏覽器的安全性原則,不是HTTP協議的一部分。伺服器端調用HTTP介面只是使用HTTP協議,不會執行JS指令碼,不需要同源策略,也就不存在跨越問題。

實現思路:通過nginx配置一個Proxy 伺服器(網域名稱與domain1相同,連接埠不同)做跳板機,反向 Proxy訪問domain2介面,並且可以順便修改cookie中domain資訊,方便當前域cookie寫入,實現跨域登入。

nginx具體配置:

#proxy伺服器server {    listen       81;    server_name  www.domain1.com;    location / {        proxy_pass   http://www.domain2.com:8080;  #反向 Proxy        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();// 前端開關:瀏覽器是否讀寫cookiexhr.withCredentials = true;// 訪問nginx中的Proxy 伺服器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相同,都是通過啟一個Proxy 伺服器,實現資料的轉寄,也可以通過設定cookieDomainRewrite參數修改回應標頭中cookie中網域名稱,實現當前域的cookie寫入,方便介面登入認證。

1、 非vue架構的跨域(2次跨域)

利用node + express + http-proxy-middleware搭建一個proxy伺服器。

1.)前端程式碼範例:

var xhr = new XMLHttpRequest();// 前端開關:瀏覽器是否讀寫cookiexhr.withCredentials = true;// 訪問http-proxy-middlewareProxy 伺服器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代理介面跨域。在開發環境下,由於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協議跨域

WebSocket protocol是HTML5一種新的協議。它實現了瀏覽器與伺服器全雙工系統通訊,同時允許跨域通訊,是server push技術的一種很好的實現。
原生WebSocket API使用起來不太方便,我們使用Socket.io,它很好地封裝了webSocket介面,提供了更簡單、靈活的介面,也對不支援webSocket的瀏覽器提供了向下相容。

1.)前端代碼:

<p>user input:<input type="text"></p><script src="./socket.io.js"></script><script>var socket = io('http://www.domain2.com:8080');// 串連成功處理socket.on('connect', function() {    // 監聽服務端訊息    socket.on('message', function(msg) {        console.log('data from server: ---> ' + msg);     });    // 監聽服務端關閉    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...');// 監聽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.');     });});

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.