如何避免 Chrome 控制台错误 Unsafe JavaScript?

发布于 2024-10-12 09:15:32 字数 208 浏览 3 评论 0原文

Chrome 在控制台中显示此错误“不安全的 JavaScript 尝试通过 URL https://domain1/app1/ 从框架访问框架URL https://domain2/app1/。”

Chrome display this error in console "Unsafe JavaScript attempt to access frame with URL https://domain1/app1/ from frame with URL https://domain2/app1/. Domains, protocols and ports must match."

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

温柔嚣张 2024-10-19 09:15:32

如果一个框架不是同源的,则它无法访问另一个框架的内容。如果这就是您想要实现的目标,那么您就无法解决该问题。

A frame cannot acces the content of another frame if it is not of the same origin. If that is what you're trying to achieve, you cannot work around that issue.

江心雾 2024-10-19 09:15:32

浏览器不允许 Javascript 跨域访问,因为恶意网站将能够与其他网站交互,这将是一个巨大的安全问题。

我在谷歌群组中发现了这个,可能值得一看:

我相信 Chrome 的开发版本
目前有支持
跨源资源共享,
允许想要选择加入的主机
跨域 XHR 访问
http://dev.w3.org/2006/waf/access-control
你可以尝试一下,但它很漂亮
前沿,所以我预计会很粗糙
补丁。

The browser will not allow Javascript to access cross domain, as malicious websites would be able to interact with other sites which would be a huge security concern.

I found this on Google groups, might be worth looking at:

I believe that dev versions of Chrome
currently have support for
Cross-Origin Resource Sharing, which
allows hosts that want to to opt-into
cross-origin XHR access
http://dev.w3.org/2006/waf/access-control.
You could try that, but it's pretty
bleeding edge, so I'd expect rough
patches.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文