我正在处理这个错误,但我不断收到以下错误 -
TypeError: this.parts[1].reviewMoment is not a function
我正在使用 jQuery 和骨干网。不幸的是,我对 JS 不是很熟悉,也不知道为什么这条线断了。
define([
"jquery",
"underscore",
], function($, _) {
reviewMoment: function(place) {
this.collection.bind("add", _.once(_.bind(this.triggerReview, this)));
this.collection.addMomentByPlace(place);
},
triggerReview: function() {
this.parts[(this.matchView ? 2 : 1)].reviewMoment();
if(this.matchView) {
this.matchView.search.close();
}
}
});
});
为什么reviewMoment
不考虑函数?
谢谢。