uniq()返回重复记录

问题描述 投票:0回答:1

我正在使用ember 2.6,即使我使用了uniq(),uniq()也会返回重复的记录>

即使我使用了uniq,它仍然会返回重复记录,但我的问题是我下面的方法是返回uniq,但它仍会返回重复记录

foos: computed.alias('model.foos'),
bars: computed.mapBy('foos', 'bar.content'),
uniqBars: computed.uniq('bars'),

我正在使用ember 2.6,即使我使用uniq(),uniq()也会返回重复记录。即使我使用uniq,它仍会返回重复记录,我的问题是我下面的方法是...

ember.js ember-data
1个回答
0
投票

如果bars是对象,则其中两个必须是same

© www.soinside.com 2019 - 2024. All rights reserved.