モデルの への呼び出し後にサーバーの応答をカスタマイズするにはどうすればよいfetch()
ですか?
私が尋ねる理由は、モデルに複数の子モデルがある状況を扱っているからです。サーバーから返されたデータは、子モデル間で分割する必要があります。
例:
// A call to "fetch()" on this model needs to split up the returned data
// between the two child models. Once this happens, their 'change'
// events should fire and update their respective views.
var ParentModel = Backbone.Model.extend({
initialize: function(){
this.childModel_01 = new ChildModel_01({});
this.childModel_02 = new ChildModel_02({});
}
})
var ChildModel_01 = Backbone.Model.extend({});
var ChildModel_02 = Backbone.Model.extend({});
本当にありがとう!