我想知道为什么_.bindAll(this, ['onSortRemove']);
在以下代码(1)中会出现以下错误:
未捕获的类型错误:对象 [对象窗口] 没有方法“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);
}