美文网首页
react实现数据绑定

react实现数据绑定

作者: 冬天的_太阳 | 来源:发表于2020-06-27 11:47 被阅读0次
     <input
              type="text"
              value={this.state.names}
              onChange={this.namesChange}
            />
    
      // 更新数据
      namesChange = e => {
        this.setState(
          {
            names: e.target.value
          },
          () => {
            // 获取最新的数据
            console.log(this.state.names);
          }
        );
      };
    
      constructor() {
        super();
        this.state = {
          names: "",
          age: 10,
          value: 1
        };
      }
    

    相关文章

      网友评论

          本文标题:react实现数据绑定

          本文链接:https://www.haomeiwen.com/subject/wgmmfktx.html