react+antd模态框加表单的使用

1.在建模态框中创建表单,并实现点击获取表单数据进行提交

(1)通过用antd自带的表单双向数据绑定的方式创建表单(Form.create({})(OpenCityForm)和const { getFieldDecorator } =this.props.form;),

(2)设置表单内联样式和横向排列(formItemLayout)

(3)通过wrappedComponentRef【 {this.cityForm = inst;}}/>】给表单OpenCityForm 指定类名cityForm

(4)再用let cityInfo = this.cityForm.props.form.getFieldsValue();获取到表单的输入内容

封装的公共的ajax请求方法:

你可能感兴趣的:(react+antd模态框加表单的使用)