gpt4 book ai didi

arrays - 在 React JSX 中循环内部循环

转载 作者:行者123 更新时间:2023-12-05 03:07:22 25 4
gpt4 key购买 nike

我正在尝试在 react、jsx 中呈现循环中的循环像下面这样:

{this.state.ans.map(function(item) {
return (
{this.state.quest.map(
function(item1) {return (item1)}
)}
{item}
)
})}

这对任何其他建议都不起作用

最佳答案

您在第一个 map 语句中忘记了包装 div:

render() {
return (
<div>
{this.state.ans.map(item =>
<div> // this div was missing
{this.state.quest.map(quest => quest)}
{item}
</div>
)}
</div>
)
}

关于arrays - 在 React JSX 中循环内部循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47632781/

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