Open Manjushaka opened 6 years ago
<CmsReportContentForm
wrappedComponentRef={form => (this.contentForm = form)}
edit={boolEdit}
detail={detail}
/>
最终提交的时候统一验证:
// 是否有任何表单改变。
this.contentForm.props.form.isFieldsTouched()
// 取得表单的错误和正确的值
this.contentForm.props.form.validateFieldsAndScroll((err, values) => {
if (!err) {
result = { result: true, values };
} else {
result = { result: false, err };
}
});
AutoComplete 的Option的value值如果与search框输入的值相同,才会自动回填。而且,如果option的children中有空格分割,会挨个删除不了,可以设置optionLabelProp
antd的子组件得取别名,否则打包出错。例子:
Select组件如果用了styled-component
解决办法是:1. StyledSelect里面定义style 2. 没有style的话,直接使用Select。