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

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

使用javascript從上到下獲取json數(shù)據(jù)

使用javascript從上到下獲取json數(shù)據(jù)

小唯快跑啊 2024-01-18 16:59:02
我正在嘗試從上到下獲取 json 數(shù)據(jù)
查看完整描述

3 回答

?
一只甜甜圈

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

嘗試這個(gè):


    const finalResult = {};

    const data = {

        "data": [

          {

            "persons": {

              "Dupont nicolas": "President",

              "George frimaolo": "engineer",

              "Tiprana masilo": "football player"

            }

          },

          {

            "persons": {

              "Balack martini": "author",

              "Dupont nicolas": "Student",

              "Joseph Allen": "dentist"

            }

          },

          {

            "persons": {

              "Fred Samanta": "baker",

              "Romero flagipi": "actor",

              "Fred Samanta": "astronaut",

              "Joseph Allen": "pilot",

              "Anne Hedley": "teacher"

            }

          }

        ]

      }

    

    for (let i in data.data) {

      for (let j in data.data[i].persons) {

        finalResult[j] = finalResult[j] ? finalResult[j] : data.data[i].persons[j];

      }

    }

    

    console.log(finalResult);


查看完整回答
反對(duì) 回復(fù) 2024-01-18
?
不負(fù)相思意

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

使用reduce和Object.assign


const combine = (arr) =>

  arr.reduce((acc, { persons }) => Object.assign(acc, persons), {});


const data = [

  {

    persons: {

      "Dupont nicolas": "President",

      "George frimaolo": "engineer",

      "Tiprana masilo": "football player",

    },

  },

  {

    persons: {

      "Balack martini": "author",

      "Dupont nicolas": "Student",

      "Joseph Allen": "dentist",

    },

  },

  {

    persons: {

      "Fred Samanta": "baker",

      "Romero flagipi": "actor",

      "Fred Samanta": "astronaut",

      "Joseph Allen": "pilot",

      "Anne Hedley": "teacher",

    },

  },

];


console.log(combine(data))


查看完整回答
反對(duì) 回復(fù) 2024-01-18
?
蕪湖不蕪

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

一個(gè)簡(jiǎn)單的Array.reduce應(yīng)該可以實(shí)現(xiàn)你的目標(biāo)。


const obj = {

  // json data shown in your question

}


const result = obj.data.reduce(

  (acc, cur) => ({

    ...cur.persons,

    ...acc,

  }),

  {}

);



查看完整回答
反對(duì) 回復(fù) 2024-01-18
  • 3 回答
  • 0 關(guān)注
  • 221 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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