{
"code":"OK",
"message":"Success",
"errorFlag":"N",
"errors":null,
"data": {
"images": {
0: img0,
1: img1,
2: img2
}
}
}
これは REST 応答であり、「画像」レコードをコレクションに入れ、個々のレコードをモデルとして扱いたいと考えました。
var Image.Model = Backbone.Model.extend({});
var Image.Collection = Backbone.Collection.extend({
model: Image.Model,
url: 'rest/url'
});
var images = new Image.TestCollection();
images.fetch();
「画像」内のレコードを画像コレクションの唯一のモデルにし、コード、メッセージ、エラーなどのキーを別のモデルまたはコレクションに配置するにはどうすればよいですか?
ありがとうございました。