gpt4 book ai didi

reactjs - 如何在 React 中渲染嵌套的数组元素?

转载 作者:行者123 更新时间:2023-12-04 12:06:55 24 4
gpt4 key购买 nike

我想呈现嵌套的数组元素。为了渲染元素,我使用了 .map 但它不适用于第二个数组。

Using list=[{value: 'One', list:[{value: 'abc', selected: false}, {value: 'efg', selected: false}]}, {value: 'Two', list: [{value: 'psr', selected: false}]}];


   list.map((item, index) => {
return (
<div key={index}>
<ul >{item.value}</ul>
item.list.map((subitem, i) => {
return (
<ul >{subitem.value}</ul>
)
})
</div>
)
})

我在这里错过了什么吗?

谢谢

最佳答案

尝试这个。您错过了 { } 在您的第二个之前 map

 list.map((item, index) => {
return (
<div key={index}>
<ul >{item.value}</ul>
{
item.list.map((subitem, i) => {
return (
<ul ><li>{subitem.value}</li></ul>
)
})
}
</div>
)
}

演示: https://jsfiddle.net/jwm6k66c/2611/

关于reactjs - 如何在 React 中渲染嵌套的数组元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43756283/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com