Vue implements verification whether the username is available

Vue implements verification whether the username is available

This article example shares the specific code of Vue to verify whether the username is available for your reference. The specific content is as follows

Verify that the username is available

Case Effect

Implementation steps (ideas)

1. Data binding through v-model
2. Prompt information is required
3. A listener is needed to monitor changes in input information
4. Events that need to be modified

Further adjustments are

1. Use a listener to monitor changes in user names
2. If the user name changes (call the backend interface for verification)
3. Adjust the prompt information according to the verification results

Code

Basic layout

<div id="app">
  <span>Username:</span>
  <span>
   <input type="text" v-model.lazy="uname">
  </span>
  <span>
   {{tip}}
  </span>
</div>

Implement specific functions through listeners

<script type="text/javascript" src="../js/vue.js"></script>
 <script type="text/javascript">
  /* Listener uses the listener to monitor changes in the user name. If the user name changes (call the background interface for verification)
  Adjust the prompt information according to the verification results*/
  var vm = new Vue({
   el: "#app",
   data: {
    uname: '',
    tip: ''
   },
   methods: {
    checkName: function (uname) {
     //Call the interface, but you can use the scheduled task to simulate the interface call var that = this;
     setTimeout(function () {
      // Simulate interface call if (uname == 'admin') {
       that.tip = 'The user name already exists, please change it'
      } else {
       that.tip = 'Username can be used'
      }
     }, 1000)
    }
   },
   watch:
    uname: function (val) {
     //Call the backend interface to verify the legitimacy of the user name this.checkName(val);
     this.tip = 'Verifying...'
    }
   },

  });
</script>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Go+Vue development process of an online food delivery application (username password and graphic verification code)
  • Vue+element-ui integrates random verification code + username + password form verification function
  • Vue method to verify whether the username is available

<<:  Steps to install MySQL 5.7.10 on Windows server 2008 r2

>>:  Detailed explanation of crontab scheduled execution command under Linux

Recommend

Nginx server https configuration method example

Linux: Linux version 3.10.0-123.9.3.el7.x86_64 Ng...

IE9beta version browser supports HTML5/CSS3

Some people say that IE9 is Microsoft's secon...

SQL implementation LeetCode (185. Top three highest salaries in the department)

[LeetCode] 185. Department Top Three Salaries The...

JavaScript realizes the effect of mobile modal box

This article example shares the specific code of ...

Detailed steps for setting up a nexus server

1. The significance of building nexus service As ...

CSS code to achieve 10 modern layouts

Preface I watched web.dev's 2020 three-day li...

Detailed explanation of using grep command in Linux

Linux grep command The Linux grep command is used...

CocosCreator Getting Started Tutorial: Making Your First Game with TS

Table of contents premise TypeScript vs JavaScrip...

Solution to Navicat Premier remote connection to MySQL error 10038

Remote connection to MySQL fails, there may be th...

Vue project implements graphic verification code

This article example shares the specific code of ...

Detailed tutorial on distributed operation of jmeter in docker environment

1. Build the basic image of jmeter The Dockerfile...

How to submit a pure HTML page, pass parameters, and verify identity

Since the project requires a questionnaire, but th...

Windows10 mysql 8.0.12 non-installation version configuration startup method

This article shares the specific steps for config...

Summary of some tips for bypassing nodejs code execution

Table of contents 1. child_process 2. Command exe...

Writing Snake Game with Native JS

This article shares the specific code of writing ...