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

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

JavaScript - 轉(zhuǎn)換對(duì)象,合并

JavaScript - 轉(zhuǎn)換對(duì)象,合并

慕田峪7331174 2022-09-02 17:22:27
我正在嘗試轉(zhuǎn)換下面的對(duì)象。我需要?jiǎng)?chuàng)建一個(gè)唯一位置的新數(shù)組,每個(gè)節(jié)點(diǎn)中都有位置和項(xiàng)對(duì)象。在JackOfAshes的幫助下,我能夠在這個(gè)筆會(huì)上走到一半。轉(zhuǎn)換此內(nèi)容:const orig = [  {    item: {      name: "cat",      id: "ca_123"    },    location: {      name: "porch",      id: "por_123"    }  },  {    item: {      name: "dog",      id: "do_123"    },    location: {      name: "porch",      id: "por_123"    }  },  {    item: {      name: "snake",      id: "sn_123"    },    location: {      name: "forest",      id: "for_123"    }  },  {    item: {      name: "bird",      id: "bi_123"    },    location: {      name: "forest",      id: "for_123"    }  },  {    item: {      name: "beer",      id: "be_123"    },    location: {      name: "fridge",      id: "fri_123"    }  }];進(jìn)入這個(gè):const desired = [  {    name: "porch",    id: "por_123",    items: [      {        name: "cat",        id: "ca_123"      },      {        name: "dog",        id: "do_123"      }    ]  },  {    name: "forest",    id: "for_123",    items: [      {        name: "snake",        id: "sn_123"      },      {        name: "bird",        id: "bi_123"      }    ]  },  {    name: "fridge",    id: "fri_123",    items: [      {        name: "beer",        id: "be_123"      }    ]  }];
查看完整描述

1 回答

?
慕姐4208626

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

你可以這樣做,或者使用reduce


const orig = [

  {

    item: {

      name: "cat",

      id: "ca_123"

    },

    location: {

      name: "porch",

      id: "por_123"

    }

  },

  {

    item: {

      name: "dog",

      id: "do_123"

    },

    location: {

      name: "porch",

      id: "por_123"

    }

  },

  {

    item: {

      name: "snake",

      id: "sn_123"

    },

    location: {

      name: "forest",

      id: "for_123"

    }

  },

  {

    item: {

      name: "bird",

      id: "bi_123"

    },

    location: {

      name: "forest",

      id: "for_123"

    }

  },

  {

    item: {

      name: "beer",

      id: "be_123"

    },

    location: {

      name: "fridge",

      id: "fri_123"

    }

  }

];


let formattedData = {}


orig.forEach(data=>{

  if(!formattedData[data.location.id]) formattedData[data.location.id]= {

    id: data.location.id,

    name: data.location.name,

    items:[]

  }

  formattedData[data.location.id].items.push(data.item)

})


const finalResponse = Object.entries(formattedData).map((e) => ( { ...e[1] } ));

console.log(finalResponse)


查看完整回答
反對(duì) 回復(fù) 2022-09-02
  • 1 回答
  • 0 關(guān)注
  • 77 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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