JSON URL からコレクションを取得しようとしています。models
バックボーンはリクエストを送信し、レスポンスを取得しますが、その後のコレクションにはありません:
ここに私のJavaScriptがあります:
stores.fetch();
応答の JSON
[{"name":"Store 1"},{"name":"Store 2"},{"name":"Store 3"},{"name":"Store 4"}]
応答の Content-Type HTTP ヘッダーは ですapplication/json
。
コレクションにロードされないのはなぜですか? JSONは正しいですか?
いくつかのコード:
be.storeList.Item = Backbone.Model.extend({
defaults: {
id: null,
name: null,
description: null
},
initialize:function(attrs){
attrs.id = this.cid;
this.set(attrs);
}
});
be.storeList.Items = Backbone.Collection.extend({
model: be.storeList.Item,
url:'/admin/stores'
});
var stores = new be.storeList.Items();
stores.fetch();
console.log(stores.toJSON());