我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Vue使用postMessage实现父子跨域通信

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Vue使用postMessage实现父子跨域通信

一、跨域通信

1.子向父通信
parent.html

// 页面销毁前,务必去除监听器,否则会造成资源泄露!
beforeDestory () {
	window.removeEventListener('message', this.listenerFun)
}

mounted() {
	window.addEventListener('message',this.listenerFun)
}

methods: {
  listenerFun (e) {
	console.log(e.data);
    if(e.data.msg==='xxx'){
            // 业务处理逻辑
    }
  }
}

child.html

window.parent.postMessage({ msg:"xxx"},'*');

2.父向子通信
parent.html

var myframe = document.getElementById('myframe') //获取iframe

myframe.contentWindow.postMessage({data:'parent'}, childDomain);//childDomain是子页面的源(协议+主机+端口号)

child.html

window.addEventListener('message', function(e){
      console.log(e.data.data);
})

注意:

  • 子向父,子postMessage,父监听message;
  • 父向子,父postMessage,子监听message;
  • 测试发现,子向父postMessage的时候,源可以写为‘*’,父向子postMessage的时候,源需要写成子的源,(也就是子页面的协议+主机号+端口);

二、示例

parent.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>iframe父级页面</title>
  <style>
      * {
          padding: 0;
          margin: 0;
      }
      iframe {
          width: 200px;
          height: 200px;
      }
  </style>

</head>
<body>
  <h2>我是父级页面</h2>
  <button id='btn'>父页面的按钮</button>
   <div id="default">div内容</div>
  <iframe class="lazy" data-src="http://localhost:8800/child.html" frameborder="0" name='myframe' id='myframe'></iframe>
  <script language="javascript" type="text/javascript">
       window.addEventListener('message',function(e){
          console.log(e.data);
          if(e.data.msg==='hideselfService'){
              document.getElementById('default').style.display = 'none';
          }
      });
       document.getElementById('btn').onclick= function(){
         var myframe = document.getElementById('myframe');
         myframe.contentWindow.postMessage({data:'parent'},'http://localhost:8800');
      }
  </script>
</body>
</html>

child.html

  <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>iframe子页面</title>
    </head>
    <body>
        <h2>我是内嵌的子页面</h2>
        <button id='btn'>子页面的按钮</button>
        <script>
             document.getElementById('btn').onclick= function(){
                window.parent.postMessage({
                    msg:"hideselfService"
                },'*');
            }
            window.addEventListener('message', function(e){
                console.log(e.data.data);
            })
        </script>
    </body>
    </html>

三、拓展阅读

《Vue进阶(九十五):addEventListener() 事件监听》

《Vue进阶(九十二):窗口通信 postMessage》

知识点扩展

vue项目中postMessage的使用总结

postMessage简介

window.postMessage() 方法可以安全地实现跨源通信。通常,对于两个不同页面的脚本,只有当执行它们的页面位于具有相同的协议(通常为https),端口号(443为https的默认值),以及主机 (两个页面的模数 Document.domain设置为相同的值) 时,这两个脚本才能相互通信。window.postMessage() 方法提供了一种受控机制来规避此限制,只要正确的使用,这种方法就很安全。

从广义上讲,一个窗口可以获得对另一个窗口的引用(比如 targetWindow = window.opener),然后在窗口上调用 targetWindow.postMessage() 方法分发一个 MessageEvent 消息。接收消息的窗口可以根据需要自由处理此事件 (en-US)。传递给 window.postMessage() 的参数(比如 message )将通过消息事件对象暴露给接收消息的窗口。
详情链接:postMessage

项目搭建

创建两个vue项目

  • 项目一:iframe-test-father;
  • 项目二:iframe-test-son

iframe-test-father 组件代码

<template>
  <div id="nav">
    <div>{{ childMsg }}</div>
    <router-link to="/">Home</router-link> |
    <router-link to="/about">About</router-link>
    <button @click="handleClickFatherToSon">父传子</button>
    <iframe
      ref="iframeRef"
      id="iframe"
      class="lazy" data-src="http://localhost:8080/#/"
      frameborder="0"
    ></iframe>
  </div>
  <router-view />
</template>

<script>
export default {
  data() {
    return {
      iframeWin: null,
      childMsg: "",
      count: 1,
    };
  },
  mounted() {
    // this.iframeWin = this.$refs.iframeRef.contentWindow;
    // this.iframeWin = document.getElementById("iframe").contentWindow;
    window.addEventListener("message", this.handleMessage);
  },
  methods: {
    handleMessage(event) {
      const data = event.data.data;
     if (data) {
        if (data.code == "success") {
          // alert(data.test);
          this.childMsg = data.test;
        }
      }
    },
    handleClickFatherToSon() {
      this.count += 1;
      document.getElementById("iframe").contentWindow.postMessage(
        {
          data: {
            code: "success",
            test: "我是父页面数据" + this.count,
          },
        },
        "*"
      );
      // this.iframeWin.postMessage(
      //   {
      //     data: {
      //       code: "success",
      //       test: "我是父页面数据" + this.count,
      //     },
      //   },
      //   "*"
      // );
    },
  },
};
</script>

iframe-test-son组件代码

<template>
  <div class="home">test1-home</div>
  <div>{{ fatherMsg }}</div>
  <button @click="handleClick">传递数据</button>
</template>

<script>
export default {
  name: "Home",
  data() {
    return {
      fatherMsg: "",
    };
  },
  mounted() {
    window.addEventListener("message", this.handleClickMessage);
  },
  methods: {
    handleClick() {
      window.parent.postMessage(
        {
          data: {
            code: "success",
            test: "我是子页面数据",
          },
        },
        "*"
      );
    },
    handleClickMessage(event) {
      if (event.data.type != "webpackOk") {
        const data = event.data.data;
        if (data.code == "success") {
          this.fatherMsg = data.test;
        }
      }
    },
  },
};
</script>

效果图

测试结果

遗留bug

bug

bug :Uncaught DOMException: Blocked a frame with origin “http://localhost:8082” from accessing a cross-origin frame.

到此这篇关于Vue应用 postMessage 实现父子跨域通信的文章就介绍到这了,更多相关Vue父子跨域通信内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Vue使用postMessage实现父子跨域通信

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Vue使用postMessage实现父子跨域通信

这篇文章主要介绍了Vue应用postMessage实现父子跨域通信,通过示例介绍了postMessage的使用,本文结合示例代码给大家介绍的非常详细,需要的朋友可以参考下
2022-12-31

Vue怎么使用postMessage实现父子跨域通信

这篇文章主要讲解了“Vue怎么使用postMessage实现父子跨域通信”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Vue怎么使用postMessage实现父子跨域通信”吧!一、跨域通信1
2023-07-04

使用iframe和postMessage怎么实现页面跨域通信

这篇文章将为大家详细讲解有关使用iframe和postMessage怎么实现页面跨域通信,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。通常情况下,对于两个不同页面的脚本,只有当执行它们的页面
2023-06-09

使用postMessage怎么解决iframe跨域通信

这篇文章将为大家详细讲解有关使用postMessage怎么解决iframe跨域通信,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。首先我们模拟场景,假设有两个不同源的页面,iframePage
2023-06-09

使用postMessage怎么实现iframe跨域

今天就跟大家聊聊有关使用postMessage怎么实现iframe跨域,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。postMessage是什么此处引用MDN关于postMessag
2023-06-09

如何在html5中使用postMessage解决跨域通信

本篇文章给大家分享的是有关如何在html5中使用postMessage解决跨域通信,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。postmessage解析HTML5提供了新型机
2023-06-09

vue父子组件间通信怎么实现

本篇内容介绍了“vue父子组件间通信怎么实现”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1.父组件传递数据给子组件父组件数据如何传递给子组
2023-07-04

js实现前端跨域postMessage的具体使用

这篇文章主要介绍了js实现前端跨域postMessage的具体使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
2023-05-17

Vue组件的父子通信与兄弟通信实现方式

Vue组件通信分为父子通信和兄弟通信。父子通信通过props将数据从父组件传递给子组件,通过$emit触发子组件事件由父组件监听。兄弟通信可以使用Vuex共享全局状态,或使用EventBus广播和订阅事件。
Vue组件的父子通信与兄弟通信实现方式
2024-04-02

Vue中iframe结合window.postMessage实现跨域通信

window.postMessage()方法可以安全地实现跨源通信,在一个项目的页面中嵌入另一个项目的页面,需要实现父子,子父页面的通信,对Vue中iframe结合window.postMessage实现跨域通信相关知识感兴趣的朋友跟随小编一起看看吧
2022-12-31

vue中如何实现非父子组件的通信

这篇文章主要介绍了vue中如何实现非父子组件的通信,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。一、Provide和InjectProvide和Inject用于非父子组件之间
2023-06-29

Vue父子组件之间事件通信怎么实现

这篇“Vue父子组件之间事件通信怎么实现”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“Vue父子组件之间事件通信怎么实现”文
2023-07-05

Vue中iframe怎么结合window.postMessage实现跨域通信

这篇文章主要介绍“Vue中iframe怎么结合window.postMessage实现跨域通信”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Vue中iframe怎么结合window.postMess
2023-07-04

编程热搜

目录