通过 jQuery 获取变量/年龄数据
我有一个在服务器上生成目录名称的中央页面,我需要将其拉入我的页面。目前它位于两个不同的域上。我使用的是 $.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 jsonP 参数进行跨域调用。另请搜索 comet 或长轮询。
Use jsonP parameter for cross domain calls. Also search for comet or long polling.