jquery ajax 错误:“206 部分内容”
我试图这样做
$.getJSON('http://lix.hisvux.se/~johanb/json.js', function(data) { ...
但我得到“206 Partial Content” “在firebug中。它与mame原始策略有关吗?我需要将两个文件保存在同一服务器上吗?或者有什么问题?
谢谢!
Im trying to do this
$.getJSON('http://lix.hisvux.se/~johanb/json.js', function(data) { ...
But im getting "206 Partial Content" in firebug. Does it have something to do with mame origin policy? Do i need to keep both files on the same server? Or whats the problem?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两个文件需要位于同一服务器上。唯一的(san/fe)解决方法是使用 JSONP。如果您控制服务器,那应该很容易,但如果您不这样做,您可以使用在线转换器来实现这一点,例如 http://campeaux.com/2011/03/json-to-jsonp-bridge/
Both files need to be on the same server. The only (san/fe) workaround is to use JSONP. If you control the server that should be easy, but if you do not you could use online converters to do the trick, e.g. http://campeaux.com/2011/03/json-to-jsonp-bridge/