私はこのバグに取り組んでおり、次のエラーが発生し続けます -
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
関数と見なされないのはなぜですか?
ありがとう。