这是当前的解决方案。
过滤器/index.hbs
{{view App.CardFilterView labelTranslation="filter.provider.label" controllerBinding="controllers.cardProviders"
filterName="provider"}}
{{view App.CardFilterView labelTranslation="filter.rewards.label" controllerBinding="controllers.cardRewards"
filterName="rewards"}}
card_filter.hbs
<h3>{{view.label}}</h3>
{{view Ember.Select contentBinding="content" optionValuePath="content.id" optionLabelPath="content.name"
classNames="multiselect" multiple="multiple"}}
卡片过滤视图
label: (->
Ember.I18n.t @get('labelTranslation')
).property('labelTranslation')
我可以在没有计算属性的情况下以某种方式去做这样的事情吗:
<h3>{{t view.label}}</h3>
? (这当然行不通)