我有以下控制器:
var ProductsController = Ember.ArrayController.extend({
search: function(queryString) {
this.set('model', App.Product.find({query: queryString }));
}
});
和一个文本字段:
var SearchFieldView = Ember.TextField.extend({
insertNewline: function() {
this.get('controller').search(this.get('value'));
}
});
现在我想在控制器在搜索功能中加载新模型时禁用文本字段。在视图中使用类似的东西是disabledBinding: 'controller.content.isLoaded'
行不通的。