是一种设置返回数组的计算属性的方法吗?在以下示例中,将添加/删除新参与者ID时,将调用get函数,但不会调用set函数
participantIds: computed({
get() {
Ember.debug('Getting...');
return this.get('participants').mapBy('id');
},
set(key, participantIds) {
Ember.debug('Setting...');
// do something when participants ids changed
return participantIds;
}
}),