如何在 ReactJS 中单击时获取输入文本值

IT技术 reactjs
2021-05-10 07:49:01

我正在学习 ReactJS,我想了解如何使用简单的 onclick 事件在 ReactJS 中获取输入文本值。我遵循了那里的教程,虽然我能够获得文本输入的参数。但不知何故,我无法获得它的value。我知道这是一个愚蠢的问题,但我正在努力解决这个问题。请检查我的代码,让我知道它有什么问题。

var MyComponent = React.createClass({
  handleClick: function() {
    if (this.refs.myInput !== null) {
        var input = this.refs.myInput;
            var inputValue = input.value;
      alert("Input is", inputValue);
    }
  },
  render: function() {
    return (
      <div>
        <input type="text" ref="myInput" />
        <input
          type="button"
          value="Alert the text input"
          onClick={this.handleClick}
        />
      </div>
    );
  }
});

ReactDOM.render(
  <MyComponent />,
  document.getElementById('container')
);

这是相同的jsfiddlejsfiddle 链接

2个回答

首先,您不能传递给alert第二个参数,请改用连接

alert("Input is " + inputValue);

Example

但是,为了更好地从输入中获取值,可以使用这样的状态

var MyComponent = React.createClass({
  getInitialState: function () {
    return { input: '' };
  },

  handleChange: function(e) {
    this.setState({ input: e.target.value });
  },

  handleClick: function() {
    console.log(this.state.input);
  },

  render: function() {
    return (
      <div>
        <input type="text" onChange={ this.handleChange } />
        <input
          type="button"
          value="Alert the text input"
          onClick={this.handleClick}
        />
      </div>
    );
  }
});

ReactDOM.render(
  <MyComponent />,
  document.getElementById('container')
);
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
<div id="container"></div>

有两种方法可以做到这一点。

  1. 在包含文本输入的构造函数中创建一个状态。将 onChange 事件附加到每次更新状态的输入框。然后 onClick 您可以只提醒状态对象。

  2. 句柄点击:函数(){警报(this.refs.myInput.value); },