【发布时间】:2016-12-29 09:18:11
【问题描述】:
我正在做React Tic Tac Toe starter tutorial,一开始就有问题....
每个 Square 都应显示其 state.value 并具有将状态设置为“X”的 onClick 方法。 GUI 应该在单击时更新,但它不是...我无法在我的代码中发现错误,你可以吗?
class Square extends React.Component {
constructor() {
super();
this.state = {value: null};
}
setState(s) {this.state = s;}
render() {
return (
<button className="square" onClick={() => this.setState({value:'X'})}>
{this.state.value}
</button>
);
}
}
class Board extends React.Component {
renderSquare(i) {
return <Square value={i}/>;
}
render() {
const status = 'Next player: X';
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>
);
}
}
class Game extends React.Component {
render() {
return (
<div className="game">
<div className="game-board">
<Board />
</div>
<div className="game-info">
<div>{/* status */}</div>
<ol>{/* TODO */}</ol>
</div>
</div>
);
}
}
// ========================================
ReactDOM.render(
<Game />,
document.getElementById('container')
);
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;
}
【问题讨论】:
-
你为什么要覆盖状态本身。您应该更新状态内的属性。试试
this.setState({value: s})。
标签: javascript reactjs