我在使用 jQuery 1.4.4 从本地 rails 应用程序加载 json 资源时遇到问题
json 是有效的(基于 jsonlint.com),如果我从其他来源请求它,我可以正确下载它。
在 webkit (Safari) 中,我得到了这个错误:
Failed to load resource: cancelled
Firebug 上的响应标头:
Content-Type application/json; charset=utf-8
Set-Cookie geoloc=toulouse; path=/;
Connection close
Server thin 1.2.7 codename No Hup
加载 json 的 jQuery 代码:
$.getJSON("http://127.0.0.1/search_agenda",
{'edition': edition,
'categories': categories},
function(data){
console.log(data);
}
});