


Element UI auto-completion solution for component-form verification conflict
When using the el-autocomplete
component of Element UI, you often encounter the problem of form verification failure: even if the user has selected the drop-down option and the input box displays the correct value, the form still prompts that it has not been filled in. This article analyzes this problem and provides solutions.
Problem description:
The form uses el-autocomplete
component to implement username selection and uses el-form-item
and prop
properties to verify. select
event of el-autocomplete
binds a function that handles user selection logic. However, after the user selects, the form verification still fails, prompting "Please enter the user name".
Code example:
Component code:
<el-form-item label="用户名" prop="username"> <el-autocomplete :fetch-suggestions="querysearch" class="usernameinput" placeholder="选择或输入用户名" v-model="selectuserinfo"> </el-autocomplete> </el-form-item>
Verification rules:
rules: { username: [{ required: true, message: 'Please enter the username', trigger: 'blur' }], password: [{ required: true, message: 'Please enter password', trigger: 'blur' }] },
Related functions:
selection(params) { console.log(this.selectuserinfo); this.loginform.username = params.username; this.loginform.password = atob(params.password); }, onblur() { console.log('blur'); console.log(this.loginform.username, this.selectuserinfo); this.loginform.username = this.selectuserinfo; },
Problem analysis and solution:
The root of the problem is that directly assigning this.loginform.username = params.username
may destroy Vue's responsive mechanism. Vue's responsive system relies on data changes to trigger view updates and form verification. Directly modify the object properties, Vue cannot track changes, resulting in form verification that cannot be updated.
Solution:
-
Ensure
loginform.username
responsiveness: Ifloginform
is a normal JavaScript object, direct assignment will not trigger Vue responsive updates. Updateloginform.username
using theVue.set
method or object expansion operator to ensure that Vue tracks data changes.selection(params) { this.$set(this.loginform, 'username', params.username); // Use Vue.set this.loginform.password = atob(params.password); }
or:
selection(params) { this.loginForm = { ...this.loginForm, username: params.username }; // Object expansion operator this.loginForm.password = atob(params.password); }
Check
trigger
attribute:trigger: 'blur'
triggers only if the input box loses focus. The selection operation ofel-autocomplete
may not triggerblur
event. Try modifyingtrigger
attribute to'change'
or using'blur'
and'change'
at the same time, or selecting the appropriate trigger event based on the actual situation.Check
v-model
binding andloginform
initialization: Make sure thatv-model
binding data is correct and thatloginform
object is correctly initialized as a responsive object.
Through the above methods, the Element UI can solve the problem of conflict between components and form verification by automatically completing the Element UI to ensure the accuracy of form verification.
The above is the detailed content of Element UI autocomplete component and form verification conflict: How to solve the problem of form verification failure?. For more information, please follow other related articles on the PHP Chinese website!

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Notepad++7.3.1
Easy-to-use and free code editor

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
