react学习(61)-antdesign 中getFieldValue
Posted 小歌谣(公众号同名)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react学习(61)-antdesign 中getFieldValue相关的知识,希望对你有一定的参考价值。
handleSubmit = e => {
const { dispatch } = this.props;
e.preventDefault();
var date_juban = this.props.form.getFieldValue('date_juban');
this.state.open_time_start = date_juban[0];
this.state.open_time_end = date_juban[1];
if (this.refs.pics.state.fileList.length > 0)
this.state.image = this.refs.pics.state.fileList[0].response.url;
this.state.location_longitude = this.props.form.getFieldValue('location_longitude');
this.state.location_latitude = this.props.form.getFieldValue('location_latitude');
}
注意:getFieldValue不能获取没有使用getFieldDecorator绑定的控件(即:如果控件值标注了id属性,用这个方法无效)。应使用document.getElementById(“id名”).value的方式进行获取值
以上是关于react学习(61)-antdesign 中getFieldValue的主要内容,如果未能解决你的问题,请参考以下文章
react学习(15)---antdesign form两种验证
AntDesign(React)学习-11 简单使用mobx