次のコード(1)で、なぜ_.bindAll(this, ['onSortRemove']);
次のエラーが発生するのか疑問に思います。
Uncaught TypeError:オブジェクト[オブジェクトウィンドウ]にメソッド'resetItemViewContainer'がありません
物事を機能させるには、次のコードを実装する必要があります_.bindAll(this);
。
私の質問は:_.bindAll(this, ['onSortRemove']);
十分なはずですか?そうでない場合、なぜですか?
(1)
initialize: function () {
_.bindAll(this, ['onSortRemove']); // it does not work
_.bindAll(this); // it works
}
onSortRemove: function () {
setTimeout(this.render, 0);
}