我有一组非常相似的计算属性:
WZ.ExercisesHomeController = Em.ArrayController.extend
content: Ember.A()
arms: ( ->
@filterProperty('group.name', 'Arms')
).property('@each.isArms')
abs: ( ->
@filterProperty('group.name', 'Abs')
).property('@each.isAbs')
back: ( ->
@filterProperty('group.name', 'Back')
).property('@each.isBack')
chest: ( ->
@filterProperty('group.name', 'Chest')
).property('@each.isChest')
legs: ( ->
@filterProperty('group.name', 'Legs')
).property('@each.isLegs')
有什么办法可以将其更改为一个属性,可能是一组属性?