我有一个使用.appcache清单的应用程序。一切都按预期工作,资源得到缓存:
CACHE MANIFEST
CACHE:
css/images/ajax-loader.gif
[...]
NETWORK:
http://docs.google.com/*
SETTINGS:
prefer-online
现在,当我从http://docs.google.com请求CSV资源时:
$.get(url, function (data) {
// do something with the data
}).fail(function () {
alert("There was an error in loading current data from the server.");
});
即使我在线(在Chrome和FF上),请求也会失败。在使用Appcache之前,一切正常。
在拥有Appcache清单时请求外部资源的正确方法是什么?
答案 0 :(得分:1)
正如我在评论中提到的,问题不是(仅)jQuery,而是CORS。 Google Docs缺乏对它的支持(“发布到网络”意味着下载,而不是从其他网址请求资源,即来源。显然Google不想添加Header set Access-Control-Allow-Origin "*"
。
所以我所做的就是遵循这个有用的指南:https://webapps.stackexchange.com/questions/11864/how-can-i-retrieve-records-from-a-google-spreadsheet-in-json-format和https://developers.google.com/gdata/samples/spreadsheet_sample(网址现在不是CSV而是JSONP,它也更改为//spreadsheets.google.com/feeds/list/[...]/[...]/public/values?alt=json-in-script
,jQuery会自动添加{ {1}}调用时:
callback=xxx
这不是很好或干净(Atom Feed而不是CSV或JSON只是为了解析它?说真的?),但它适用于我。
答案 1 :(得分:0)
我只是让它与tabletop合作。现在没有更多的CORS问题了。