Vue 进阶(七十九):应用 postMessage 实现父子跨域通信
一、跨域通信
1.子向父通信 parent.html
复制代码
child.html
复制代码
2.父向子通信 parent.html
复制代码
child.html
复制代码
注意:
子向父,子
postMessage
,父监听message
;父向子,父
postMessage
,子监听message
;测试发现,子向父
postMessage
的时候,源可以写为‘*
’,父向子postMessage
的时候,源需要写成子的源,(也就是子页面的协议+主机号+端口);
二、示例
parent.html
复制代码
child.html
复制代码
版权声明: 本文为 InfoQ 作者【华强】的原创文章。
原文链接:【http://xie.infoq.cn/article/95d04a1dcdb81e0159e7517cb】。文章转载请联系作者。
评论