美文网首页
使用antd开发时遇上的onChange 拿不到target.v

使用antd开发时遇上的onChange 拿不到target.v

作者: kangaroo_v | 来源:发表于2019-01-22 14:39 被阅读0次
    /***
     * this.serchVal = this.serchVal.bind(this)
     */
    
    serchVal(){
      const {getFieldValue} = this.props.form;
      console.log(getFieldValue(xqmc))//antd方法 获取一个输入控件的值
    }
    render(){
      return {
        <div>
          <FormItem>
            <Input
              name:"xqmc"
              onChange={this.serchVal}
            />
          </FormItem>
        </div>
      }
    }
    

    随后群用说

    destructuring 后丢掉了 this binding…… 用 this.props.form.getFieldValue 试试

    结果这个方法是可以的
    react不是很懂 纯笔记用

    相关资料

    react的用的是事件池,完事了是会被回收的

    相关文章

      网友评论

          本文标题:使用antd开发时遇上的onChange 拿不到target.v

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