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

标签 javascript reactjs tic-tac-toe

我正在关注 https://reactjs.org/tutorial/tutorial.html 的 Tic tac Toe 教程

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

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/

相关文章:

javascript - 具有保存位置的 jquery 菜单

javascript - ReactJS Promise resolve() 不会将值传递给 .then() ,而是reject() 将值传递给 .catch()

javascript - 在事件处理程序内部进行 setState 调用后,React 何时重新呈现

javascript - 是否有办法将 X 或 O 记录到数据数组中以检查获胜者?

java - 在 Minimax 期间我们实际上在哪里分配最佳移动?

javascript - 如何 chop 字符串并删除尾随字符(如果存在)?

javascript - 在 IE 中拖动子级时,嵌套在 Draggable 中的 Draggable 会同时拖动

javascript - 如何使用 jQuery 或 JavaScript 动态获取 JSON 数组键和值

Javascript 字符串 match() 方法返回错误 "Uncaught TypeError: Cannot read property ' toString' of null"

ruby - Minimax 算法 Ruby Tic Tac Toe