gpt4 book ai didi

javascript - 如何正确使用 postMessage 与 html5 和现代浏览器进行跨域消息传递?我仍然收到错误

转载 作者:搜寻专家 更新时间:2023-10-31 19:27:40 24 4
gpt4 key购买 nike

我确定这里有什么地方不对,但我不能完全指出它...示例 here表现很好,控制台上没有任何通知或错误,所以这意味着我的浏览器支持使用 html5 进行跨域消息传递(当然支持,它是 Chrome 14..)。

我的代码或多或少做了以下事情:在 WebsiteA.com 中加载的脚本创建了一个 iframe 并将其附加到 WebsiteA.com 的文档中。附加的框架将包含 WebsiteB.com,当它被加载时,它必须向它的父 WebsiteA.com 发送一条消息,告诉它 WebsiteB.com 已准备好接收一些 JSON。当 WebsiteA.com 收到此消息时,它会发回 JSON。

所以 WebsiteA.com 在 </body> 之前有一行就像这样:<script scr="http://WebsiteB.com/load-my-iframe.js" type="text/javascript"></script> ,并在 load-my-iframe.js 内,我有以下内容:

var child = document.createElement('iframe');
child.src = 'http://WebsiteB.com/child.html';

var body = document.getElementsByTagName('body')[0]
body.appendChild(child);

var SomeJSON = {"something" : "that WebsiteB should have"};

window.onmessage = function (e) {
if (e.origin === 'http://WebsiteB.com' && e.data === 'ready') {
e.source.postMessage(SomeJSON, 'http://WebsiteB.com');
}
}

这样就创建了 iframe 元素,将其附加到 WebsiteA.com 的文档并等待它说准备就绪(我猜……)。在 WebsiteB.com 上,我有文件 child.html,即 src在 WebsiteA.com 的文档中加载的 iframe,该文件具有以下内容:

<!DOCTYPE html>
<html lang="pt">
<head>
<title>WebsiteB.com</title>
<script type="text/javascript">
window.onload = function () {
window.parent.postMessage('ready','*');
}

window.addEventListener('message', receiveMessage, false);
function receiveMessage(event) {
if (event.data.something === "that WebsiteB should have") {
document.write('It worked!');
}
}
</script>
</head>
<body>
</body>
</html>

现在是奇怪的东西:

遗憾的是,我没有 WebsiteA.com 和 WebsiteB.com,但我设法在一个顶级域和一个子域(以 .no.de 结尾)之间工作。它确实有效,但在 Google Chrome 14 的控制台中我得到了经典的 Unsafe JavaScript attempt to access frame with URL <a href="http://WebsiteA.com/" rel="noreferrer noopener nofollow">http://WebsiteA.com/</a> from frame with URL <a href="http://WebsiteB.com/child.html" rel="noreferrer noopener nofollow">http://WebsiteB.com/child.html</a>. Domains, protocols and ports must match. . example from html5demos没有这个错误就可以正常工作。

为什么会出现此错误以及如何消除它?

最佳答案

我刚刚尝试了您的代码,这似乎在 Chrome 中有效。它使用 jsfiddle 和 jsbin 在父子窗口之间传递消息。

http://jsbin.com/oxesef/4/edit#preview

关于javascript - 如何正确使用 postMessage 与 html5 和现代浏览器进行跨域消息传递?我仍然收到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7652646/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com