我的前端学习笔记26——跨域

1,什么是同源策略

同源策略:
浏览器处于安全方面的考虑,只允许与本域下的接口交互,不同源的客户端脚本在没有明确授权的情况下,不能读取对方的资源。

  • 同协议:(http、file、shh、https、tel、ftp...)以上协议必须相同;
  • 同域名:第一个 // 到第二个 / 之间的部分必须相同;
  • 同端口:一般为80,具体看设置。

以上三条都相同则为同源。

2,什么是跨域?跨域有几种实现形式

  • 跨域:
    在使用ajax向后台请求数据时,如果接口域名不相同,即为跨域。
    换句话说,允许不同域的接口进行交互即为跨域。

  • 跨域实现形式:

  • JSONP

  • CORS

  • 降域

  • postMessage

3,JSONP 的原理是什么

应用中我们发现,使用<script>标签引用链接不会出现跨域问题,因此,可以采用这种方式跨域。<script src='链接 '></script>。服务端不再返回JSON格式的数据,而是返回一段调用某个函数的js代码,在src中进行了调用,这样实现了跨域。

4,CORS是什么

  • CORS:跨域资源共享(Cross-origin resource sharing)
    它允许浏览器向跨源服务器,发出XMLHttpRequest请求,从而克服了AJAX只能同源使用的限制。
  • 实现方式:
    当你使用XMLHttpRequest发送请求时,浏览器发现该请求不符合同源策略,会给该请求加一个请求头:Origin,后台进行一系列处理,如果确定接受请求则在返回结果中加入一个响应头:Access-Control-Allow-Origin; 浏览器判断该相应头中是否包含Origin的值,如果有则浏览器会处理响应,我们就可以拿到响应数据,如果不包含浏览器直接驳回,这时我们无法拿到响应数据。

转载自:阮一峰博客

5,根据视频里的讲解演示三种以上跨域的解决方式

  • 方法一:JSONP
  • 优势:
  • 不需要AJAX,只需要通过script标签即可完成向后台发送请求并获取数据;
  • 劣势:
  • 需要后台支持输出指定格式的内容,比如下面例子中的函数名需要后台进行配合;

html端:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>新闻加载example</title>
    <style media="screen">
      .newsFrame{
        margin: 0 auto;
      }
    </style>
  </head>
  <body>
    <div class="newsFrame">
      <ul class="content">
        <li>在北大听讲座</li>
        <li>统计陷阱</li>
        <li>浅薄</li>
      </ul>
      <button class="btn">换一批</button>
    </div>


     <script type="text/javascript">
        $('.btn').addEventListener('click',function(){
          var script = document.createElement('script');
          script.src='http://b.har.com:8080/getNews?callback=appendhtml';

    //当点击按钮时,会在head中生成一个script标签,并下载标签中引用的链接内容。
    //返回的是appendhtml(内容),这个会被函数appendhtml执行,放在html上。

          document.head.appendChild(script);
          document.head.removeChild(script);
        })
    //为了避免生成太多script标签,生成之后立刻删除,但是内容已经下载,不会影响。

      function appendhtml(news){
        var html = '';
        for(var i=0; i<news.length; i++){
          html += '<li>' + news[i] + '</li>'
        }
        console.log(html)
      $('.content').innerHTML = html
      }

      function $(id){
        return document.querySelector(id)
      }

    </script>
  </body>
</html>

后台端:

app.get('/getNews', function(req, res) {

        var news = [
        "身边的逻辑学",
        '牛奶可乐经济学',
        '看见',
        '论中国',
        '乌合之众',
        '哲学的慰藉'
      ]
      var data = [];
      for(var i=0; i<3; i++){
        var index = parseInt(Math.random()*news.length);
        data.push(news[index]);
      news.splice(index,1);
      }
    var cb = req.query.callback;
      res.send( cb + '(' + JSON.stringify(data) + ')' );
    });
    //获取callback的内容(函数名称),包装之后返回给html。
  • 方法二:CORS

  • 优势:

  • 整个过程无需用户参与,完全由浏览器自己完成;

  • 只需要在后台加入响应头即可,不需要对ajax进行复杂变换;

  • 劣势:

HTML端:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>新闻加载example</title>
    <style media="screen">
      .newsFrame{
        margin: 0 auto;
      }
    </style>
  </head>
  <body>
    <div class="newsFrame">
      <ul class="content">
        <li>在北大听讲座</li>
        <li>统计陷阱</li>
        <li>浅薄</li>
      </ul>
      <button class="btn">换一批</button>
    </div>


     <script type="text/javascript">
        $('.btn').addEventListener('click',function(){

          var xmlhttp = new XMLHttpRequest();
          xmlhttp.open('get','http://b.har.com:8080/getNews',true);
          xmlhttp.send();

          xmlhttp.onreadystatechange = function(){
            if(xmlhttp.readyState==4 && xmlhttp.status==200){
              appendhtml(JSON.parse(xmlhttp.responseText));
            }
          }


        })

      function appendhtml(news){
        var html = '';
        for(var i=0; i<news.length; i++){
          html += '<li>' + news[i] + '</li>'
        }
        console.log(html)
      $('.content').innerHTML = html
      }

      function $(id){
        return document.querySelector(id)
      }

    </script>
  </body>
</html>

后台端:

app.get('/getNews', function(req, res) {

        var news = [
        "身边的逻辑学",
        '牛奶可乐经济学',
        '看见',
        '论中国',
        '乌合之众',
        '哲学的慰藉'
      ]
    var data = [];
    for(var i=0; i<3; i++){
      var index = parseInt(Math.random()*news.length);
      data.push(news[index]);
      news.splice(index,1);
    }
    // res.head('Access-Control-Allow-Origin','http://a.har.com:8080')
    //注意这里是a.har.com:8080,因为后台端是在b.har.com域下
    res.header("Access-Control-Allow-Origin","*");
    res.send(data);
  });
  • 方法三:降域

  • 优势:

  • 代码超级简单,只需一个命令就轻松搞定;

  • 劣势:
    只能在拥有相同父域名下才可以使用;

a.har.com端:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>降域test</title>
    <style media="screen">
      .main{
        border: 1px solid #ccc;
        width:500px;
        height: 500px;
        display: inline-block;
        position: absolute;
        top:10px;
        left:10px;
      }
      iframe{
        border: 1px dashed #ccc;
        width:500px;
        height:500px;
        margin-left: 100px;
        position: absolute;
        top:10px;
        left:450px;
      }
    </style>
  </head>
  <body>
    <div class="ct">
      <div class="main">
        <h1>使用降域来实现跨域</h1>
        <input type="text" class="content" placeholder="http://a.har.com:8080">
      </div>
      <iframe src="http://b.har.com:8080/jiangyu2.html" frameborder="0"></iframe>
    </div>
    <script type="text/javascript">
      document.querySelector('.main input').addEventListener('input',function(){
        console.log(this.value);
        window.frames[0].document.querySelector('input').value = this.value;
      })
      document.domain = 'har.com';
      //降域的命令;
    </script>
  </body>
</html>

b.har.com端:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>降域test2</title>
    <style media="screen">
  </style>
  </head>
  <body>
    <div class="ct">
      <h1>使用降域来实现跨域</h1>
      <div class="main">
        <input type="text" class="content" placeholder="http://a.har.com:8080">
      </div>
    </div>
    <script type="text/javascript">
      document.querySelector('.main input').addEventListener('input',function(){
        window.parent.document.querySelector('input').value = this.value;
      })
      document.domain = 'har.com';
      //降域的命令;
    </script>
  </body>
</html>

-方法四:postMassage

  • 优势:
  • 域名完全不相同也没关系;
  • 劣势:
  • 操作真心复杂;

a.har.com:8080/postMessage端:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>降域test</title>
    <style media="screen">
      .main{
        border: 1px solid #ccc;
        width:500px;
        height: 500px;
        display: inline-block;
        position: absolute;
        top:10px;
        left:10px;
      }
      iframe{
        border: 1px dashed #ccc;
        width:500px;
        height:500px;
        margin-left: 100px;
        position: absolute;
        top:10px;
        left:450px;
      }
    </style>
  </head>
  <body>
    <div class="ct">
      <div class="main">
        <h1>使用postMessage来实现跨域</h1>
        <input type="text" class="content" placeholder="http://a.har.com:8080">
      </div>
      <iframe src="http://b.har.com:8080/postMessage2.html" frameborder="0"></iframe>
    </div>
    <script type="text/javascript">
      document.querySelector('.main input').addEventListener('input',function(){
        console.log(this.value);
        window.frames[0].postMessage(this.value,'*');
      })
      window.addEventListener('message',function(e){
        document.querySelector('.main input').value = e.data;
      })
    </script>
  </body>
</html>

b.har.com:8080/postMessage2端:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>降域test2</title>
    <style media="screen">
  </style>
  </head>
  <body>
    <div class="ct">
      <h1>使用postMessage来实现跨域</h1>
      <div class="main">
        <input type="text" class="content" placeholder="http://a.har.com:8080">
      </div>
    </div>
    <script type="text/javascript">
      document.querySelector('.main input').addEventListener('input',function(){
        window.parent.postMessage(this.value,'*');
      })
      window.addEventListener('message',function(e){
        document.querySelector('.main input').value = e.data;
        console.log(e.data);
      })
    </script>
  </body>
</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,128评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,316评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,737评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,283评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,384评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,458评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,467评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,251评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,688评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,980评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,155评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,818评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,492评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,142评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,382评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,020评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,044评论 2 352

推荐阅读更多精彩内容