初めて Backbone.js を学習していますが、トリガーからカスタム イベントを取得しようとして問題が発生しています (または、トリガーされたときの認識からのビューから)。
ここで私のコレクション コードを確認できます: https://github.com/Integralist/Backbone-Playground/blob/master/Assets/Scripts/App/main.js#L72-86collection:init
これは、初期化されるとカスタムイベントをトリガーします。
var Contacts = Backbone.Collection.extend({
model: Contact,
initialize: function(){
this.trigger('collection:init');
this.bind('add', this.model_added, this);
},
model_added: function(){
console.log('A new model has been created so trigger an event for the View to update the <select> menu');
}
});
しかし、後でそのイベントをリッスンしているビューで、関数を起動できませんpopulate
: https://github.com/Integralist/Backbone-Playground/blob/master/Assets/Scripts/App/main. js#L90-107
var ContactsView = Backbone.View.extend({
initialize: function(){
console.log(contacts.models, 'get initial model data and populate the select menu?');
},
events: {
'collection:init': 'populate',
'change select': 'displaySelected'
},
populate: function(){
console.log('populate the <select> with initial Model data');
},
displaySelected: function (event) {
console.log('get model data and display selected user', event);
}
});
私が間違っていることはありますか?