You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.9 KiB
68 lines
1.9 KiB
5 years ago
|
---
|
||
|
order: 5
|
||
|
title:
|
||
|
zh-CN: 嵌套结构与校验信息
|
||
|
en-US: Nest
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
`name` 属性支持嵌套数据结构。通过 `validateMessages` 或 `message` 自定义校验信息模板,模板内容可参考[此处](https://github.com/react-component/field-form/blob/master/src/utils/messages.ts)。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
`name` prop support nest data structure. Customize validate message template with `validateMessages` or `message`. Ref [here](https://github.com/react-component/field-form/blob/master/src/utils/messages.ts) about message template.
|
||
|
|
||
|
```tsx
|
||
|
import { Form, Input, InputNumber, Button } from 'antd';
|
||
|
|
||
|
const layout = {
|
||
|
labelCol: { span: 8 },
|
||
|
wrapperCol: { span: 16 },
|
||
|
};
|
||
|
|
||
|
const validateMessages = {
|
||
|
required: 'This field is required!',
|
||
|
types: {
|
||
|
email: 'Not a validate email!',
|
||
|
number: 'Not a validate number!',
|
||
|
},
|
||
|
number: {
|
||
|
range: 'Must be between ${min} and ${max}',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const Demo = () => {
|
||
|
const onFinish = values => {
|
||
|
console.log(values);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<Form {...layout} name="nest-messages" onFinish={onFinish} validateMessages={validateMessages}>
|
||
|
<Form.Item name={['user', 'name']} label="Name" rules={[{ required: true }]}>
|
||
|
<Input />
|
||
|
</Form.Item>
|
||
|
<Form.Item name={['user', 'email']} label="Email" rules={[{ type: 'email' }]}>
|
||
|
<Input />
|
||
|
</Form.Item>
|
||
|
<Form.Item name={['user', 'age']} label="Age" rules={[{ type: 'number', min: 0, max: 99 }]}>
|
||
|
<InputNumber />
|
||
|
</Form.Item>
|
||
|
<Form.Item name={['user', 'website']} label="Website">
|
||
|
<Input />
|
||
|
</Form.Item>
|
||
|
<Form.Item name={['user', 'introduction']} label="Introduction">
|
||
|
<Input.TextArea />
|
||
|
</Form.Item>
|
||
|
<Form.Item wrapperCol={{ ...layout.wrapperCol, offset: 8 }}>
|
||
|
<Button type="primary" htmlType="submit">
|
||
|
Submit
|
||
|
</Button>
|
||
|
</Form.Item>
|
||
|
</Form>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ReactDOM.render(<Demo />, mountNode);
|
||
|
```
|