报错信息:

Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('http://a.page.com') does not match the recipient window's origin ('http://b.page.com')

解决方式:在子页面使用postMessage时指定origin

例如:

const host = 'http://b.page.com'
window.parent.postMessage({data: 'test'}, host);

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐