--- category: Components type: Data Entry cols: 1 title: Form cover: https://gw.alipayobjects.com/zos/alicdn/ORmcdeaoO/Form.svg --- High performance Form component with data scope management. Including data collection, verification, and styles. ## When to use - When you need to create an instance or collect information. - When you need to validate fields in certain rules. ## Form Component You can align the controls of a `form` using the `layout` prop: - `horizontal`:to horizontally align the `label`s and controls of the fields. (Default) - `vertical`:to vertically align the `label`s and controls of the fields. - `inline`:to render form fields in one line. ## Form Item Component A form consists of one or more form fields whose type includes input, textarea, checkbox, radio, select, tag, and more. A form field is defined using ``. ## API ### Form | Property | Description | Type | Default Value | Version | | --- | --- | --- | --- | --- | | colon | change default props colon value of Form.Item (only effective when prop layout is horizontal) | boolean | true | | | hideRequiredMark | Hide required mark of all form items | Boolean | false | | | labelAlign | text align of label of all items | 'left' \| 'right' | 'right' | | | labelCol | The layout of label. You can set `span` `offset` to something like `{span: 3, offset: 12}` or `sm: {span: 3, offset: 12}` same as with `` | [object](/components/grid/#Col) | | | | labelWrap | whether label can be wrap | boolean | false | 3.0 | | layout | Define form layout | 'horizontal'\|'vertical'\|'inline' | 'horizontal' | | | model | data of form component | object | | | | name | Form name. Will be the prefix of Field `id` | string | - | 2.0.0 | | noStyle | No style for `true`, used as a pure field control | boolean | false | 3.0 | | rules | validation rules of form | object | | | | scrollToFirstError | Auto scroll to first failed field when submit | boolean \| [options](https://github.com/stipsan/scroll-into-view-if-needed/#options) | false | 2.0.0 | | validateOnRuleChange | whether to trigger validation when the `rules` prop is changed | boolean | true | | | validateTrigger | Config field validate trigger | string \| string\[] | `change` | 2.0.0 | | wrapperCol | The layout for input controls, same as `labelCol` | [object](/components/grid/#Col) | | | ### Events | Events Name | Description | Arguments | Version | | | --- | --- | --- | --- | --- | | finish | Trigger after submitting the form and verifying data successfully | function(values) | - | 2.0.0 | | finishFailed | Trigger after submitting the form and verifying data failed | function({ values, errorFields, outOfDate }) | - | 2.0.0 | | submit | Defines a function will be called if form data validation is successful. | Function(e:Event) | | | | validate | triggers after a form item is validated | Function(name, status, errorMsgs) | | | ### Methods | Method | Description | Parameters | Version | | --- | --- | --- | --- | | clearValidate | clear validation message for certain fields. The parameter is name or an array of names of the form items whose validation messages will be removed. When omitted, all fields' validation messages will be cleared | (nameList?: [NamePath](#NamePath)\[]) => void | | | resetFields | reset all the fields and remove validation result | (nameList?: [NamePath](#NamePath)\[]) => void | | | scrollToField | Scroll to field position | (name: [NamePath](#NamePath), options: \[[ScrollOptions](https://github.com/stipsan/scroll-into-view-if-needed/tree/ece40bd9143f48caf4b99503425ecb16b0ad8249#options)]) => void | | | validate | Validate fields, it is same as validateFields | (nameList?: [NamePath](#NamePath)\[]) => Promise | | | validateFields | Validate fields | (nameList?: [NamePath](#NamePath)\[]) => Promise | | #### NamePath `string | number | (string | number)[]` ### Form.Item | Property | Description | Type | Default Value | Version | | --- | --- | --- | --- | --- | | autoLink | Whether to automatically associate form fields. In most cases, you can use automatic association. If the conditions for automatic association are not met, you can manually associate them. See the notes below. | boolean | true | | | colon | Used with `label`, whether to display `:` after label text. | boolean | true | | | extra | The extra prompt message. It is similar to help. Usage example: to display error message and prompt message at the same time. | string\|slot | | | | hasFeedback | Used with `validateStatus`, this option specifies the validation status icon. Recommended to be used only with `Input`. | boolean | false | | | help | The prompt message. If not provided, the prompt message will be generated by the validation rule. | string\|slot | | | | htmlFor | Set sub label `htmlFor`. | string | | | | label | Label text | string\|slot | | | | labelAlign | text align of label | 'left' \| 'right' | 'right' | | | labelCol | The layout of label. You can set `span` `offset` to something like `{span: 3, offset: 12}` or `sm: {span: 3, offset: 12}` same as with `` | [object](/components/grid/#Col) | | | | name | a key of `model`. In the use of validate and resetFields method, the attribute is required | string | | 2.0.0 | | required | Whether provided or not, it will be generated by the validation rule. | boolean | false | | | rules | validation rules of form | object \| array | | | | validateFirst | Whether stop validate on first rule of error for this field. | boolean | false | | | validateStatus | The validation status. If not provided, it will be generated by validation rule. options: 'success' 'warning' 'error' 'validating' | string | | | | validateTrigger | When to validate the value of children node | string \| string\[] | `change` | | | wrapperCol | The layout for input controls, same as `labelCol` | [object](/components/grid/#Col) | | | ### Note #### 3.x Since version 3.0, Form.Item no longer hijacks child elements, but automatically checks through provider/inject dependency injection. This method can improve component performance, and there is no limit to the number of child elements. The same is true for child elements. It can be a high-level component that is further encapsulated. You can reference [Customized Form Controls](#components-form-demo-customized-form-controls) But it also has some disadvantages: 1. If the custom component wants Form.Item to be verified and displayed, you need to inject `const {id, onFieldChange, onFieldBlur} = useInjectFormItemContext()` and call the corresponding method. 2. A Form.Item can only collect the data of one form item. If there are multiple form items, it will cause collection confusion, for example, ```html ``` As above Form.Item does not know whether to collect `name="a"` or `name=`b\`\`, you can solve this kind of problem in the following two ways: The first is to use multiple `a-form-item`: ```html ``` The second way is to wrap it with a custom component and call `useInjectFormItemContext` in the custom component, It is equivalent to merging multiple form items into one. ```html ``` ```html ``` Third, the component library provides an `a-form-item-rest` component, which will prevent data collection. You can put form items that do not need to be collected and verified into this component. It is the same as the first This method is very similar, but it does not generate additional dom nodes. ```html ``` #### 2.x Form.Item hijacks the only child element and listens to the `blur` and `change` events to achieve the purpose of automatic verification, so please make sure that the form field is not wrapped by other elements. If there are multiple child elements, only the change of the first child element will be monitored. If the form field to be monitored does not meet the conditions of automatic monitoring, you can associate the form field as follows: ```html hahha
``` ### Validation Rules | Property | Description | Type | Default Value | | --- | --- | --- | --- | | enum | validate a value from a list of possible values | string | - | | len | validate an exact length of a field | number | - | | max | validate a max length of a field | number | - | | message | validation error message | string | - | | min | validate a min length of a field | number | - | | pattern | validate from a regular expression | RegExp | - | | required | indicates whether field is required | boolean | `false` | | transform | transform a value before validation | function(value) => transformedValue:any | - | | trigger | When to validate the value of children node. | 'blur' \| 'change' \| `['change', 'blur']` | - | | type | built-in validation type, [available options](https://github.com/yiminghe/async-validator#type) | string | 'string' | | validator | custom validate function (Note: [callback must be called](https://github.com/ant-design/ant-design/issues/5155)) | function(rule, value, callback) | - | | whitespace | treat required fields that only contain whitespace as errors | boolean | `false` | See more advanced usage at [async-validator](https://github.com/yiminghe/async-validator). ### useForm (v2.2) `useForm` is a method that can run independently of the Form component. It uses the Vue response mechanism to monitor and verify data, and returns the verification result. You can bind the verification result to any component, `Form. Item` only displays the results. The following versions need to be provided separately by `@ant-design-vue/use` library, it is not recommended to continue to use, you should upgrade to version 2.2+ as soon as possible ```ts import { Form } from 'ant-design-vue'; const useForm = Form.useForm; useForm(modelRef, ruleRef, [options]); ``` 参数说明: ```ts /* modelRef`, `ruleRef` must be responsive data */ interface Props { [key: string]: any; } function useForm( modelRef: Props | Ref, rulesRef?: Props | Ref, options?: { immediate?: boolean; deep?: boolean; validateOnRuleChange?: boolean; debounce?: DebounceSettings; }, ): { modelRef: Props | Ref; rulesRef: Props | Ref; initialModel: Props; validateInfos: validateInfos; resetFields: (newValues?: Props) => void; validate: (names?: namesType, option?: validateOptions) => Promise; validateField: ( name?: string, value?: any, rules?: [Record], option?: validateOptions, ) => Promise; mergeValidateInfo: (items: ValidateInfo | ValidateInfo[]) => ValidateInfo; clearValidate: (names?: namesType) => void; onValidate?: ( name: string | number | string[] | number[], status: boolean, errorMsgs: string[] | null, ) => void; }; ```