How to write Form components using async-validator (detailed tutorial)

亚连
Release: 2018-06-12 16:55:37
Original
5455 people have browsed it

This article mainly introduces the method of writing Form components using async-validator. Now I share it with you and give it as a reference.

In front-end development, form verification is a very common function. Some UI libraries such as ant.design and Element ui have implemented Form components with verification functions. async-validator is a library that can perform asynchronous verification of data. Both the Form component of ant.design and Element ui use async-validator. This article will briefly introduce the basic usage of async-validator and use this library to implement a simple Form component with verification function.

1. Basic usage of async-validator

The function of async-validator is to verify whether the data is legal and give prompt information according to the verification rules.

The following demonstrates the most basic usage of async-validator.

import AsyncValidator from 'async-validator' // 校验规则 const descriptor = { username: [ { required: true, message: '请填写用户名' }, { min: 3, max: 10, message: '用户名长度为3-10' } ] } // 根据校验规则构造一个 validator const validator = new AsyncValidator(descriptor) const data = { username: 'username' } validator.validate(model, (errors, fields) => { console.log(errors) })
Copy after login

When the data does not comply with the verification rules, the corresponding error message can be obtained in the callback function of validator.validate.

When the common verification rules in async-validator cannot meet the needs, we can write a custom verification function to verify the data. A simple check function is as follows.

function validateData (rule, value, callback) { let err if (value === 'xxxx') { err = '不符合规范' } callback(err) } const descriptor = { complex: [ { validator: validateData } ] } const validator = new AsyncValidator(descriptor)
Copy after login

async-validator supports asynchronous verification of data, so when writing a custom verification function, the callback in the verification function must be called regardless of whether the verification passes or not.

2. Write Form component and FormItem component

Now that we know how to use async-validator, how to combine this library with the Form component to be written.

Implementation ideas

Use a picture to describe the implementation ideas.

Form component

The Form component should be a container that contains an indefinite number of FormItem or other elements. You can use Vue's built-in slot component to represent the content in the Form.

The Form component also needs to know how many FormItem components it contains that need to be verified. Normally, the communication between parent and child components is achieved by binding events on the child components, but using slot here, the events of the child components cannot be monitored. Here you can listen to events through $on on the Form component, and trigger the custom event of the Form component before the FormItem is mounted or destroyed.

According to this idea, we first write the Form component.

 
Copy after login

FormItem component

The FormItem component is much simpler. First, you have to look up to find the Form component that contains it. Next, the corresponding error information can be calculated based on formError.

 
Copy after login

FormItem also needs to trigger some custom events of the Form component in the mounted and beforeDestroy hooks.

Copy after login

Finally create a new index.js to export the written components.

import VForm from './Form.vue' import FormItem from './FormItem.vue' export { VForm, FormItem }
Copy after login

3. How to use

The verification function of the form is in the Form component. You can access the Form component through $ref and call the validate function to obtain the corresponding verification information.

The usage is as follows:

 
Copy after login

Click here for the complete code.

4. Summary

This article briefly introduces the usage of async-validator and implements a Form component with verification function. The Form implemented here has many shortcomings: (1) It is only verified when the form is submitted. (2) The FormItem component should also adjust the UI based on the verification results and give corresponding prompts. Therefore, the Form component is more suitable for use on mobile terminals with less interaction.

Based on this implementation idea, you can write more customized Form components according to application scenarios.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

How to use the Swiper plug-in in Angular.js to solve the problem of not being able to slide

How to call the third chapter in Angular5 Third-party js plug-in (detailed tutorial)

How to use third-party js library in angular2 (detailed tutorial)

The above is the detailed content of How to write Form components using async-validator (detailed tutorial). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!