Ajax同源策略和Jquery $.getJSON

发布于 2024-10-29 04:20:06 字数 144 浏览 2 评论 0原文

我们知道 Ajax 请求只能向运行应用程序的同一服务器上的资源发出,这称为同源策略。 但以 JQuery ajax 方法 $.getJSON 为例,我们可以传入任何 url,即使它不涉及我们自己的服务器。这是否违反了禁止跨域ajax请求的政策?

请帮忙 谢谢

We know that Ajax requests can only be made to resources on the same server where we are running our application, which is known as the same origin policy.
But in the JQuery ajax method $.getJSON for example, we are able to pass in any url even if it does not involve our own server. Isnt this a violation of the no cross domain ajax requests policy ?

Please Help
Thank You

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

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

发布评论

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

评论(1

岁吢 2024-11-05 04:20:07

getJSON 使用 JSONP 协议

它不是创建无法跨域的 XmlHTTPRequest,而是创建一个指向不同域中 URL 的

getJSON uses the JSONP protocol.

Instead of making an XmlHTTPRequest, which cannot cross domains, it makes a <script> tag pointing to a URL in a different domain.
The URL is assumed to return a script that calls the specified callback function with the relevant data.

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