gpt4 book ai didi

javascript - React - 在 JSX 中的 render() 函数中循环值

转载 作者:行者123 更新时间:2023-12-03 02:36:57 25 4
gpt4 key购买 nike

菜鸟问题,但我是 react 新手,我想在渲染方法中循环我的状态值。

我当前(工作)代码:

render() {
return (
<div>
<div className="status">{status}</div>
<div className="board-row">
{this.renderSquare(0)}
{this.renderSquare(1)}
{this.renderSquare(2)}
</div>
<div className="board-row">
{this.renderSquare(3)}
{this.renderSquare(4)}
{this.renderSquare(5)}
</div>
<div className="board-row">
{this.renderSquare(6)}
{this.renderSquare(7)}
{this.renderSquare(8)}
</div>
</div>
);
}

我会喜欢这样的东西:

render() {    
return (
<div>
<div className="status">{status}</div>
for (var i = 0; i < this.state.squares; i++) {
if (i!=0 && i % 3 == 0) {
<div className="board-row">
}

{this.renderSquare(i)}

if (i!=0 && i % 3 == 0) {
</div>
}
}
</div>
);
}

显然这个语法不起作用,但希望你能明白要点。

最佳答案

渲染函数中循环的方式是使用map。

render() {
return (
<div>
<div className="status">{status}</div>
{
this.state.squares.map((square, idx) =>
idx % 3 === 0 ?
<div className="board-row" key={idx}>
{this.renderSquare(idx)}
// This makes sure no extra elements are created.
{this.state.squares[idx + 1] && this.renderSquare(idx + 1)}
{this.state.squares[idx + 2] && this.renderSquare(idx + 2)}
</div>
:
null
)}}
);
}

关于javascript - React - 在 JSX 中的 render() 函数中循环值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48501950/

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