我有一個基於jquery mobile的移動網站實現,現在學習backbone.js並重新考慮應用程序以更好地組織它。Backbone Collection Fetch()不工作
var membership = Backbone.Model.extend();
var memberships = Backbone.Collection.extend({
model: membership,
parse: function (resp, xhr) {
},
url: "/groups.svc/memberships/azxcv01"
});
var col1 = new memberships();
col1.fetch({ success: function() {
console.log(col1);
}
});
在chrome中,我看到URL格式良好並返回有效的JSON。 解析()事件也得到有效的 resp。但上面的console.log()顯示爲空數組「[]」。
我錯過了什麼?
檢查更新答案.. –