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

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

如何通過唯一代碼對對象數(shù)組進(jìn)行分組?

如何通過唯一代碼對對象數(shù)組進(jìn)行分組?

森欄 2023-11-12 14:25:04
我有一個(gè)對象數(shù)組(示例):[  {     'Row Labels': '37383783738',     'ProdCode&Desc': '8H9H89 Homestyle cinnamon cake (200g) 8x120',  },        {     'Row Labels': '37383783738',     'ProdCode&Desc': '9HD063 Goodness me! Chargrilled bites (20g) 6x30',  },        {     'Row Labels': '83322223733',     'ProdCode&Desc': '39HSH02 MDS Chargrilled Hot & Spicy (40g) 2x30',  },  {     'Row Labels': '83322223733',     'ProdCode&Desc': '93JSHS Treasured battered fillet (120g) 6x30',  },]如何循環(huán)遍歷數(shù)組中的每個(gè)元素,并且如果當(dāng)前元素的“行標(biāo)簽”代碼與下一個(gè)元素的“行標(biāo)簽”代碼匹配 - 則將該 ProdCode&Desc 添加到當(dāng)前元素 ProdCode&Desc 的末尾,每個(gè)字符串由半角分隔冒號。上面示例的預(yù)期輸出為:[  {     'Row Labels': '37383783738',     'ProdCode&Desc': '8H9H89 Homestyle cinnamon cake (200g)8x120; 9HD063 Goodness me! Chargrilled bites (20g) 6x30',  },             {     'Row Labels': '83322223733',     'ProdCode&Desc': '39HSH02 MDS Chargrilled Hot & Spicy (40g) 2x30; 93JSHS Treasured battered fillet (120g) 6x30',  },]這是我到目前為止所擁有的:records.map((record, index, array) => {   if (record["Row Labels"]   .toLowerCase()   .includes(array[index + 1]["Row Lables"].toLowerCase())) {   record.push(array[index + 1]["ProdCode&Desc"]);  }});
查看完整描述

1 回答

?
尚方寶劍之說

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

您可以使用數(shù)組歸約方法來做到這一點(diǎn)。

const data = [

? {

? ? 'Row Labels': '37383783738',

? ? 'ProdCode&Desc': '8H9H89 Homestyle cinnamon cake (200g) 8x120',

? },

? {

? ? 'Row Labels': '37383783738',

? ? 'ProdCode&Desc': '9HD063 Goodness me! Chargrilled bites (20g) 6x30',

? },

? {

? ? 'Row Labels': '83322223733',

? ? 'ProdCode&Desc': '39HSH02 MDS Chargrilled Hot & Spicy (40g) 2x30',

? },

? {

? ? 'Row Labels': '83322223733',

? ? 'ProdCode&Desc': '93JSHS Treasured battered fillet (120g) 6x30',

? },

];


const ret = Object.values(

? data.reduce((prev, c) => {

? ? const p = prev;

? ? const key = c['Row Labels'];

? ? if (!p[key]) p[key] = { ...c };

? ? else

? ? ? p[key] = {

? ? ? ? ...p[key],

? ? ? ? 'ProdCode&Desc': (p[key]['ProdCode&Desc'] += `; ${c['ProdCode&Desc']}`),

? ? ? };

? ? return p;

? }, {})

);

console.log(ret);



查看完整回答
反對 回復(fù) 2023-11-12
  • 1 回答
  • 0 關(guān)注
  • 164 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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