私はサーバーコールを介してコレクションに追加される一連のモデルを持っています。私のすべてのモデルが追加され、コレクションに含まれるようになっています。今私はコレクションを検索し、モデル内の指定されたid属性に基づいてモデルを返す方法が必要です。私はidに組み込まれているコレクションについて話しているわけではありません。コレクションの各モデルの一部であるカスタムIDを参照しています。コレクションのモデルを見つける
私はこれを持っています。私の_detect関数は私の後ろのものを返さない。
var collection = Backbone.Collection.extend({
initialize: function() {
_.bindAll(this);
this.bind('add', this.modelIsAddedd);
this.serverCall();
},
modelIsAddedd: function(model){
console.log('model = ', model);
},
getModelByCustomID: function(id){
var model = this.detect(id, function(model){ return model });
},
serverCall: function(){
$.ajax({
my ajax call with success and error
});
},
onSuccess: function(response){
this.add(response.data);
}
});
});
このカスタムIDは、システム内のすべてのモデルで一意ですか? 'idAttribute'を使ってモデルの' id'にすることができますか? –
はいcustomIDはコレクション内の各モデルに固有です。 – Chapsterj