Problem scenario: Recently, when developing a project, I encountered such a problem: protocolId: { required: true, message: 'Please select the parsing protocol', trigger: 'blur'}, ], This can realize the verification function, but there will be a problem. If the verification condition (submit button) is triggered and an error message is prompted, the error message will still exist even if the data is reselected later, because the submit button is not clicked again to trigger the verification. This user experience is not very good. Solution:1. Check the fields individually Click the Save button to trigger the validation, which generally validates all fields. this.$refs.addForm.validateField('protocolId', (valid) => { //valid returns the error message written in the rule set. If the conditions are met, the return value is empty if (!valid) { return } }) The above code can be executed in a function that confirms data selection, so that this special content is checked again. If it meets the verification rules, the error prompt disappears. 2. Directly clear the prompt information of the field under the form fieldthis.$refs.addForm.clearValidate(); This method is to directly clear the error message without making any judgment. I personally do not recommend it. This concludes this article on how to clear verification prompts for element form validation. For more information on clearing verification prompts for element form validation, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
>>: How does MySQL connect to the corresponding client process?
Without further ado, I will post the code for you...
The bash history command in Linux system helps to...
Preparation 1. The master and slave database vers...
Table of contents 1. for loop: basic and simple 2...
1. KVM virtual machine migration method and issue...
Without further ado Start recording docker pullin...
Create a test table -- --------------------------...
Table of contents Method 1: The simplest way to s...
Table of contents Manual deployment 1. Create a s...
No way, no way, it turns out that there are peopl...
1. Statistics of PV and IP Count the PV (Page Vie...
The mini program implements a complete shopping c...
Table of contents Tutorial Series 1. Introduction...
Table of contents What is axios? Axios request ty...
Special symbols Named Entities Decimal encoding S...