0
以下のコードはエバーデータのコレクションから特定の値を抽出するにはどうすればよいですか?
tagsValue: Ember.computed('[email protected]', {
get() {
const out = [];
this.get('tags').forEach((tag) => {
out.push(tag.get('value'));
});
return out;
}
}),
がそうするより良い方法はあり、私の現在のソリューションですか?