sách gpt4 ăn đã đi

javascript - 井字游戏 React Js : Not able to print location

In lại Tác giả: Walker 123 更新时间:2023-11-30 11:00:11 26 4
mua khóa gpt4 giày nike

我正在关注来自 https://reactjs.org/tutorial/tutorial.html 的井字游戏教程

我想打印被点击单元格的位置

nhập mô tả hình ảnh ở đây

我的代码:

function Square(props) {
return (

);
}

class Board extends React.Component {
renderSquare(i) {
return (
<>
value={this.props.squares[i]}
onClick={() => this.props.onClick(i)}
/>
);
}

render() {
return (


{this.renderSquare(0)}
{this.renderSquare(1)}
{this.renderSquare(2)}


{this.renderSquare(3)}
{this.renderSquare(4)}
{this.renderSquare(5)}


{this.renderSquare(6)}
{this.renderSquare(7)}
{this.renderSquare(8)}


);
}
}

class Game extends React.Component {
constructor(props) {
super(props);
this.state = {
history: [
{
squares: Array(9).fill(null), location : 0
// Here I have introduced location to hold index
}
],
stepNumber: 0,
xIsNext: true
};
}

handleClick(i) {
const history = this.state.history.slice(0, this.state.stepNumber + 1);
const current = history[history.length - 1];
const squares = current.squares.slice();
if (calculateWinner(squares) || squares[i]) {
trở lại;
}
squares[i] = this.state.xIsNext ? "X" : "O";
this.setState({
history: history.concat([
{
squares: squares, location : i // Assigning Index
}
]),
stepNumber: history.length,
xIsNext: !this.state.xIsNext
});
}

jumpTo(step) {
this.setState({
stepNumber: step,
xIsNext: (step % 2) === 0
});
}

render() {
const history = this.state.history;
const current = history[this.state.stepNumber];
const winner = calculateWinner(current.squares);
console.log("Hi : " + history[this.state.stepNumber].location + ", " + this.state.stepNumber) // Console logs print correct location value
const moves = history.map((step, move) => {
var desc = move ?
'Go to move #' + move :
'Go to game start';
desc = desc + " : " + history[this.state.stepNumber].location;
return (



  • );
    });

    // This display of Index is getting updated with each clicks

    let status;
    if (winner) {
    status = "Winner: " + winner;
    } khác {
    status = "Next player: " + (this.state.xIsNext ? "X" : "O");
    }

    return (


    <>
    squares={current.squares}
    onClick={i => this.handleClick(i)}
    />


    {status}

      {moves}



    );
    }
    }

    // ========================================

    ReactDOM.render(, document.getElementById("root"));

    function calculateWinner(squares) {
    const lines = [
    [0, 1, 2],
    [3, 4, 5],
    [6, 7, 8],
    [0, 3, 6],
    [1, 4, 7],
    [2, 5, 8],
    [0, 4, 8],
    [2, 4, 6]
    ];
    for (let i = 0; i < lines.length; i++) {
    const [a, b, c] = lines[i];
    if (squares[a] && squares[a] === squares[b] && squares[a] === squares[c]) {
    return squares[a];
    }
    }
    return null;
    }

    Đầu ra:

    位置正在更新所有列表项中的最新值,如下面的屏幕:

    nhập mô tả hình ảnh ở đây

    nhập mô tả hình ảnh ở đây

    nhập mô tả hình ảnh ở đây

    我要打印索引

    Go To Move #X : [ Index of cell ]

    索引正在为每个具有最新值的列表项更新。

    注意:所有单元格索引从 0 到 8。

    câu trả lời hay nhất

    只要改变这个

    var desc = move ?
    'Go to move #' + move :
    'Go to game start';
    desc = desc + " : " + history[this.state.stepNumber].location;

    đến

    const desc = move ?
    `Go to move #' + move + ` : ` + step.location` :
    'Go to game start';

    关于javascript - 井字游戏 React Js : Not able to print location,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58137005/

    26 4 0
    Chứng chỉ ICP Bắc Kinh số 000000
    Hợp tác quảng cáo: 1813099741@qq.com 6ren.com
    Xem sitemap của VNExpress