我必須將json文件中的數據帶到我的html頁面。 我正在爲我的項目使用angularjs和jquery。 jquery ajax返回200響應,但它不會返回成功內的數據。我能夠獲取錯誤屬性(XHR.responseText)中的數據。 我寫的(內部控制器還jQuery的文件準備呼叫嘗試)的代碼,jquery ajax沒有在我的本地獲取json文件
$.ajax({
url:'../scripts/chart.json',
dataType: 'json',
type: "GET",
success: function(jqXHR) {
alert(''); *// not entering into success call??*
},
error: function(jqXHR, textStatus, errorThrown) {
console.log(jqXHR); *//returning the value inside jqXHR.responseText*
}
});
任何幫助嗎? 我已經使用jQuery的最新LIB文件和JSON文件如下,
{
"sshe": [Srno: "1",
Cluster Id: "1"]
}
反正我使用CORS插件在Chrome克服相同來源跨瀏覽器的問題?任何幫助?任何工作樣本?
使用服務器的URL例如, 'http:// localhost'來加載JSON – Tushar
你是從文件系統打開它嗎?那麼起源爲null – mplungjan
那也是無效的json。檢查你的JSON在jsonlint.com – charlietfl