所以我不确定最好的方法是什么,目前我有一个看起来像这样的ajax调用
var _this = this;
_.each(this.models, function (model) {
model.fetch({
success: function(model, response) {
if (_.has(model.attributes, "settings")) {
_this.populateSettings(_this);
}
}
在 populateSettings 方法中,我需要此 Backbone 视图的某些属性。我不知道如何获取这些属性,除非传入每个特定属性,或者传入对此主干视图的引用,然后在 populateSettings 中使用该引用来填充视图。有一个更好的方法吗?谢谢。