click()
以下のコード スニペットに示すように、バックボーン コレクションといくつかのビューが return 関数で作成されます。
問題:productList
Javascript コンソールを使用して Collection のような backbone.js オブジェクトにアクセスするにはどうすればよいですか? this.productList
何も返さないのでproductList
、オブジェクトの直接の子ではないと思いwindow
ます。では、どのようにproductList
コレクションを作成すればよいでしょうか?
JS コード
$('#submit_btn').click(function() {
console.log('do something');
}, function() {
this.productList = new ProductCollection();
var self = this;
self.productListView = new ProductListView({ collection: self.productList });
this.productList.fetch({
data: {gender: 'men'},
processData: true
});
});
});