/***
* 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不是很懂 纯笔记用
网友评论