// iframe内嵌项目
methods: {
callWindowTask(nodeKeys) {
// 触发方法通过window.parent.postMessage向外层传递消息
window.parent.postMessage({
channel: ‘Connect’,
type: ‘Ready’,
info: {
…
}
}, '’) // ‘’可以修改为具体域名或者ip
}
}
// 外层项目
create() {
// 监听浏览器对象message方法
window.addEventListener(‘message’, function (res) {
// messageEvent对象的data就是传递过来的数据
console.log(res.data)
})
}