同源策略、Javascript/jQuery AJAX 和检索 RSS XML 提要
我在使用 jQuery 检索位于外部域的 RSS 提要时遇到了问题。它在 Safari 中工作,但由于同源策略限制(也有关于 $.ajax() 函数的文档),其他浏览器会出错。
想知道我是怎么修好的吗?
I came across a problem using jQuery to retrieve an RSS feed located on an external domain. It was working in Safari but other browsers would error because of Same Origin Policy restrictions (which are also documented about the $.ajax() function).
Wanna know how I fixed it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有三种方法可以绕过同源策略:
script
标签加载数据。需要源网站的配合,而且基本上是黑客和笨拙的。你付了钱,你就抓住机会了。
There are three ways to get around the Same-Origin Policy:
script
tag. Needs cooperation from source website and basically hackish and clumsy.You pays your money and you takes your chance.
我制作了一个简单的 PHP 脚本,如下所示:
它看起来很垃圾,但目前运行得很好。我希望它有帮助。
I made a simple PHP script like so:
It's pretty rubbish looking, but it works well enough for the moment. I hope it helps.