我想循環一個對象,它從後端接收。在我收到這些消息後,我正在迭代一次容器,我在這裏收到錯誤消息而不是獲取對象值。我不能迭代解析後的json
JSON鏈接樣本:https://dl.dropboxusercontent.com/u/10268257/TCSPage.json
這裏是我的功能:
jsonConvertor = function (argument) {
return {
init : function (json) {
var that = this;
this.receivedJson = $.parseJSON(json); //i am parseing still not working
console.log(this.receivedJson.DocPageDetails)
// _.each(that.receivedJson.DocPageDetails, function (i, item) {
// console.log(i, item);
// });
}
}
};
$.get("https://dl.dropboxusercontent.com/u/10268257/TCSPage.json")
.error(function() {
console.log('no page found error');
})
.done(function(json){
var html = jsonConvertor().init(json);
})
我不太確定,但我認爲JSON表示法不允許評論。檢查並告訴我是否有效。而且,檢查你的JSON結構,是否使用''this.d.receivedJson.DocPageDetails''(包括''d'')? –