通过 jQuery 获取变量/年龄数据

发布于 2024-09-29 21:48:25 字数 403 浏览 6 评论 0原文

我有一个在服务器上生成目录名称的中央页面,我需要将其拉入我的页面。目前它位于两个不同的域上。我使用的是 $.get('url') 但由于它位于不同的域上,我收到以下错误:

Access-Control-Allow-Origin 不允许来源 http://domain

我改用 $.getJSON('url'); 它检索了我需要的信息,但我得到了

未捕获的语法错误:意外的标记

因为它不是 JSON 格式。我想要的只是能够访问生成的目录名称。

有什么指点吗?

I have a central page that generates directory names on the server and I need to pull that into my page. Currently it's on two separate domains. I was using $.get('url') but since it was on different domains, I was getting the following error:

Origin http://domain is not allowed by Access-Control-Allow-Origin.

I swapped to using $.getJSON('url'); and it retrieved the information that I needed, but I got

Uncaught Syntax Error: Unexpected token

as it wasn't in JSON format. All I want is to be able to access the generated directory name.

Any pointers?

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

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

发布评论

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

评论(1

逆夏时光 2024-10-06 21:48:25

使用 jsonP 参数进行跨域调用。另请搜索 comet 或长轮询。

Use jsonP parameter for cross domain calls. Also search for comet or long polling.

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