antd Form表单中select设置初始值
程序员文章站
2022-03-02 11:53:30
...
<Form.Item label="作用对象">
{getFieldDecorator('targetId', { initialValue: this.state.targetId }, {
rules: [{
required: false,
message: '作用对象'
}]
})(
<Select placeholder="请选择作用对象">
{targetList.map(entity => <Option key={entity.id} value={entity.id}>{entity.name}</Option>)}
</Select>
)}
</Form.Item>
在
getFieldDecorator('targetId',时添加初始值而不是在select标签中添加初始值
上一篇: JavaScript基础(javascript变量)
下一篇: 小说软件体验感
推荐阅读
-
在一个form表单中,存在多个select,递交到后台文件后,怎么获取到这几个select被选中的值?
-
在一个form表单中,存在多个select,递交到后台文件后,怎么获取到这几个select被选中的值?
-
在一个form表单中,存在多个select,递交到后台文件后,怎么获取到这几个select被选中的值?
-
Antd form表单的设置值,取值,清空值
-
封装antd中的form表单
-
antd Form表单getFieldDecorator中设置RangePicker的默认时间
-
vue antd 动态设置form表单的值
-
antd4中Form组件initialValues设置初始值无效,使用setFieldsValue动态赋值,getFieldsValus动态获取值
-
antd自定义组件初始值没有返回或者设置initialValue,form.validateFields不会执行验证
-
原生js获取form表单select中option的value值