第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何通過(guò)新集合從對(duì)象中獲取唯一數(shù)組?

如何通過(guò)新集合從對(duì)象中獲取唯一數(shù)組?

慕田峪4524236 2023-07-14 16:32:28
如何通過(guò)新集合從對(duì)象中獲取唯一數(shù)組?我有一個(gè)包含對(duì)象的數(shù)組,如何獲得唯一的數(shù)組,但只能保留 id?IE:[{id: 1, title: 'test1'}, {id: 2, title: 'test2'}]const arr = [{id: 1, title: 'test1'}, {id: 2, title: 'test2'}, {id: 1: title: 'test1'}]const filtered = arr.filter((item) => item.title)const result = Array.from(new set(arr))
查看完整描述

2 回答

?
小怪獸愛吃肉

TA貢獻(xiàn)1852條經(jīng)驗(yàn) 獲得超1個(gè)贊

您可以使用哈希表并獲取它的值。


這種方法采用最后找到的具有相同id.


const

    array = [{ id: 1, title: 'first' }, { id: 2, title: 'test2' }, { id: 1, title: 'last' }],

    unique = Object.values(array.reduce((r, o) => (r[o.id] = o, r), {}));


console.log(unique);


通過(guò)使用Set帶有閉包的 a ,您可以過(guò)濾數(shù)組。


這種方法采用第一個(gè)找到的具有相同id.


const

    array = [{ id: 1, title: 'first' }, { id: 2, title: 'test2' }, { id: 1, title: 'last' }],

    unique = array.filter((s => ({ id }) => !s.has(id) && s.add(id))(new Set));


console.log(unique);


查看完整回答
反對(duì) 回復(fù) 2023-07-14
?
Cats萌萌

TA貢獻(xiàn)1805條經(jīng)驗(yàn) 獲得超9個(gè)贊

比起集合,Map 可能更好,只需創(chuàng)建一個(gè)以 id 為鍵的映射即可。


例如。


const arr = [{id: 1, title: 'test1'}, {id: 2, title: 'test2'}, {id: 1, title: 'test1'}];


const d = new Map(arr.map(m => [m.id, m]));


console.log([...d.values()]);


查看完整回答
反對(duì) 回復(fù) 2023-07-14
  • 2 回答
  • 0 關(guān)注
  • 156 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)