mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
4cdf37bedb
* init form * first demo * add normal login * add style * webit * support nest errors * beauti form errors * use onReset * modal demo * add list demo * match key of errors logic * date demo * customize component * moving style * add status style * without form create * add demos * add inline style * clean up legacy * fix drawer demo * mention * fix edit-row * editable table cell * update mentions demo * fix some test case * fix upload test * fix lint * part of doc * fix ts * doc update * rm react 15 * rm config * enhance test coverage * clean up * fix FormItem context pass logic * add more demo * en to build * update demo * update demo & snapshot * more doc * update list doc * update doc * update demo to display condition render * update snapshot * add provider doc * support configProvider * more doc about validateMessages * more description * more and more doc * fix typo * en doc * Form.List doc * m v3 -> v4 * add skip
68 lines
1.9 KiB
Markdown
68 lines
1.9 KiB
Markdown
---
|
|
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);
|
|
```
|