亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在嵌套的對象數組中查找數組

在嵌套的對象數組中查找數組

牛魔王的故事 2023-10-14 17:04:04
我想在嵌套的對象數組中找到一個數組,我該怎么做?這是我的數組const arr = [    {        "teamA": [            {                "_id": "5fcb57c5a1a426c03bcfd25f",                "level": 10,                "username": "asaf"            }        ],        "teamB": [],        "options": {}    },    {        "teamA": [            {                "_id": "a7fgy3h1uio",                "level": 10,                "username": "asaf"            }        ],        "teamB": [            {                "_id": "13rfedsc32",                "level": 10,                "username": "asaf"            },            {                "_id": "dghg453r3q",                "level": 10,                "username": "asaf"            }        ],        "options": {}    }];現在我想創建一個函數,通過 _id 返回玩家所在團隊的數組例如,我創建了這個:const findTeam = playerId => {    const match = arr.find(({ teamA, teamB }) => [teamA, teamB].some(team => team.some(i => i._id == playerId)));    if(!match) return;    const { teamA, teamB } = match;    const team = [teamA, teamB].find(team => team.some(i => i._id == playerId));    return team;};它正在工作,但是我這樣做的方式看起來很混亂,有什么巧妙的方法可以做到這一點嗎?謝謝!
查看完整描述

1 回答

?
富國滬深

TA貢獻1790條經驗 獲得超9個贊

您可以使用flatMap

const arr = [{teamA:[{_id:"5fcb57c5a1a426c03bcfd25f",level:10,username:"asaf"}],teamB:[],options:{}},{teamA:[{_id:"a7fgy3h1uio",level:10,username:"asaf"}],teamB:[{_id:"13rfedsc32",level:10,username:"asaf"},{_id:"dghg453r3q",level:10,username:"asaf"}],options:{}}];


const findTeam = playerId => arr.flatMap(({ teamA, teamB }) => [teamA, teamB])

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? .find(team => team.some(player => player._id === playerId));


console.log(findTeam('13rfedsc32'));



查看完整回答
反對 回復 2023-10-14
  • 1 回答
  • 0 關注
  • 94 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號