0
我試圖所以這個,但它不工作指定在.property)動態字符串(
App.FacetCheckboxView = Ember.Checkbox.extend({
facetName: null,
facetValue: null,
checked: function() {
var s = this.get('facetValue');
var selected = this.get('controller.' + this.get('facetName'));
return selected.contains(s);
}.property('controller.'+ this.get('facetName') +'[email protected]')
})
如果我在它的工作性質方法參數利用一個靜態字符串來代替。有沒有其他方法可以實現這一目標?
謝謝,它的工作。 – ryudice