Marionette.CompositeView
コレクションをレンダリングする必要があるがあります。このコレクションをフィルタリングしてアクションを実行
したいと思います。
次のコード(1)で試しましたが、次のエラー(2)が発生します。fetch
add
どんなアイデアでも、ありがとう。
(1)
var myCompositeView = Marionette.CompositeView.extend({
initialize: function () {
this.collection = app.taskCollection.where({type: 'todo'});
}
});
(2)
// Uncaught TypeError: Object has no method 'on'