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

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

React:遍歷數(shù)組只返回第一個(gè)結(jié)果

React:遍歷數(shù)組只返回第一個(gè)結(jié)果

ITMISS 2023-05-25 15:48:36
我花了很長(zhǎng)時(shí)間才讓它返回一個(gè)結(jié)果,但現(xiàn)在我只能讓這個(gè)函數(shù)返回我數(shù)組中的第一個(gè)結(jié)果。示例 JSON:(下一個(gè)函數(shù)的 JSON.stringify(mapResult) 的輸出)[  [    {      "_attributes": {        "key": "aed8d486-9557-4e53-ae9c-78bfc938c719",        "number": "1",        "type": "Video",        "title": "Stars.mov",        "shortTitle": "Stars.mov",        "state": "Completed",        "position": "119980",        "duration": "119980",        "loop": "False",        "muted": "True",        "volume": "100",        "balance": "0",        "solo": "False",        "audiobusses": "M",        "meterF1": "0",        "meterF2": "0"      },      "_text": "Stars.mov"    },    {      "_attributes": {        "key": "b9be415e-1c63-47fb-9791-72432eccd0c3",        "number": "2",        "type": "Colour",        "title": "Colour",        "shortTitle": "Colour",        "state": "Paused",        "position": "0",        "duration": "0",        "loop": "False"      },      "_text": "Colour"    },    {      "_attributes": {        "key": "23d74bb3-dbd8-410d-8b16-d05a9db4b656",        "number": "3",        "type": "Capture",        "title": "Sample Input",        "shortTitle": "Sample Input",        "state": "Running",        "position": "0",        "duration": "0",        "loop": "False",        "muted": "True",        "volume": "100",        "balance": "0",        "solo": "False",        "audiobusses": "M",        "meterF1": "0",        "meterF2": "0"      },      "_text": "Sample Input"    }  ]]
查看完整描述

1 回答

?
Helenr

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

您在另一個(gè)數(shù)組中有一個(gè)數(shù)組。這就是為什么您的 map 函數(shù)只返回一個(gè)元素的原因。像這樣重寫你的代碼......


const modifiedMap = mapResulst[0];

let inputMap = []

if(modifiedMap){

  inputMap = modifiedMap.map((input, i) => {

      return (

        <div key={i}>

          <h3>{input._attributes.title}</h3>

          <span>

            <Button color="danger" size="lg" block>

              {input._attributes.number}<br />

              {input._attributes.title}<br />

            State: {input._attributes.state}<br />

            Loop: {input._attributes.loop}<br />

            Type:  {input._attributes.type}<br />

            </Button>

          </span>

        </div>

      )

    })

}

return inputMap


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

添加回答

舉報(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)