跨域异常

发布于 2024-10-16 13:20:37 字数 509 浏览 6 评论 0原文

我在以下网址上传了我的 WordPress 博客:http://blog.in

我在调用以下网址时遇到跨域异常,

                $.ajax({
                          type: "POST",
                          url: "http://app.blog.in/getToken",
                          contentType: "text/html",
                              success: function(msg) {
                                            alert(msg);
                          }
                    });

请提出建议我

谢谢

I uploaded my wordpress blog on url : http://blog.in

I am getting cross domain exception while calling following url

                $.ajax({
                          type: "POST",
                          url: "http://app.blog.in/getToken",
                          contentType: "text/html",
                              success: function(msg) {
                                            alert(msg);
                          }
                    });

Please suggest me

Thanks

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

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

发布评论

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

评论(2

茶色山野 2024-10-23 13:20:37

您收到跨域错误,因为您正在跨域:app.blog.inblog.in。您应该从与发布内容相同的域提供内容。

You are getting a cross-domain error because you are crossing domains: app.blog.in and blog.in. You should serve the content from the same domain as where you post it.

深白境迁sunset 2024-10-23 13:20:37

由于您是从不同的子域加载的,因此浏览器安全不允许这样做。
除非您可以将加载的数据移动到同一域(也是同一子域),否则您应该考虑使用 JSONP.然后您可以从任何地方加载数据。

Since you are loading from a different subdomain, browser security doesn't allow that.
Unless you can move the data you're loading to the same domain (that's same subdomain as well), you should look into using JSONP. Then you can load data from anywhere.

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