gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 11:00:11 26 4
gpt4 key购买 nike

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

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

enter image description here

我的代码:

function Square(props) {
return (
<button className="square" onClick={props.onClick}>
{props.value}
</button>
);
}

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

render() {
return (
<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>
);
}
}

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]) {
return;
}
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 (
<li key={move}>
<button onClick={() => this.jumpTo(move)}>{desc}</button>
</li>
);
});

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

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

return (
<div className="game">
<div className="game-board">
<Board
squares={current.squares}
onClick={i => this.handleClick(i)}
/>
</div>
<div className="game-info">
<div>{status}</div>
<ol>{moves}</ol>
</div>
</div>
);
}
}

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

ReactDOM.render(<Game />, 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;
}

输出:

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

enter image description here

enter image description here

enter image description here

我要打印索引

Go To Move #X : [ Index of cell ]

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

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

最佳答案

只要改变这个

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

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
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com