溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Vue怎么添加手機驗證碼組件功能

發(fā)布時間:2022-10-24 13:52:00 來源:億速云 閱讀:146 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Vue怎么添加手機驗證碼組件功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Vue怎么添加手機驗證碼組件功能”吧!

什么是組件:

組件是Vue.js最強大的功能之一。組件可以擴展HTML元素,封裝可重用的代碼。在較高層面上,組件是自定義的元素,Vue.js的編譯器為它添加特殊功能。在有些情況下,組件也可以是原生HTML元素的形式,以is特性擴展。

這里考慮到功能的復(fù)用,我把當(dāng)前彈出手機驗證碼的操作放在了單獨的組件中:

<template >
 <div>
  <div class="bind-phone-box">
   <div class="phone-title">綁定手機</div>
   <div class="phone-content" v-on:click.stop="fillContent">
    <input v-model="phoneNum" class="phone-num" type="text" placeholder="請輸入手機號碼">
    <div class="verify-box clearfix">
     <input class="verify-num" v-model="verifyNum" type="text" placeholder="請輸入驗證碼"><input v-on:click="sendSmsCode" class="verify-btn" type="button" v-model="btnContent" v-bind="{'disabled':disabled}">
    </div>
   </div>
   <div class="phone-submit clearfix">
    <input class="submit-cancel" type="button" value="取消">
    <input class="submit-confirm" v-on:click.stop="verificationCode" type="button" value="確定">
   </div>
  </div>
 </div>
</template>

并把當(dāng)前組件放在需要使用它的組件中,這里需要注意的是,在控制 綁定手機組件的顯示和隱藏的時候,出現(xiàn)了一個小問題:點擊 “手機” 按鈕需要顯示當(dāng)前組件,但什么時候去隱藏當(dāng)前的組件呢,我是這樣想的:

  情況1:用戶已經(jīng)輸完了手機號并通過了驗證,點擊"確定"按鈕的時候需要隱藏當(dāng)前組件;

  情況2:用戶沒有完成手機驗證,但又不想繼續(xù),點擊當(dāng)前手機的任意位置(除去“確定”按鈕、手機號輸入框和 驗證碼輸入框)都應(yīng)該隱藏當(dāng)前組件;

基于這兩種情況,我在父組件中給子組件添加了一個容器:

<li class="mui-table-view-cell phone-li">
   <span v-on:click="verifyPhone" class="mui-navigate-right"><span>手機號<span class="necessary">*</span></span></span>
    <!-- 手機驗證碼 -->
  <div class="shade" v-show="verifyShow" v-on:click="verifyPhone">
    <!-- 手機驗證碼子組件 -->
    <phoneVerify></phoneVerify>
   </div>
  </li>

通過控制 父div 的顯示狀態(tài)來控制子組件的顯示狀態(tài),

methods:{
  // 手機號驗證
  verifyPhone(){
   this.verifyShow=!this.verifyShow;
  },
 },

在驗證組件中的邏輯控制如下:

<script>
 // 引入彈窗組件
 import { Toast } from 'mint-ui';
 export default {
  data(){
   return {
    phoneNum:"", //手機號
    verifyNum:"", //驗證碼
    btnContent:"獲取驗證碼", //獲取驗證碼按鈕內(nèi)文字
    time:0, //發(fā)送驗證碼間隔時間
    disabled:false //按鈕狀態(tài)
   }
  },
  created(){
  },
  methods:{
   // 獲取驗證碼
   sendSmsCode(){
    var reg=11&& /^((13|14|15|17|18)[0-9]{1}\d{8})$/;//手機號正則驗證
    var phoneNum = this.phoneNum;
    if(!phoneNum){//未輸入手機號
     Toast("請輸入手機號碼");
     return;
    }
    if(!reg.test(phoneNum)){//手機號不合法
     Toast("您輸入的手機號碼不合法,請重新輸入");
    }
    this.time = 60;
    this.timer();
    // 獲取驗證碼請求
    var url = 'http://bosstan.asuscomm.com/api/common/sendSmsCode';
    this.$http.post(url,{username:phoneNum},{emulateJSON:true}).then((response)=>{
     console.log(response.body);
    });
   },
   timer(){
    if(this.time>0){
     this.time--;
     this.btnContent = this.time+"s后重新獲取";
     this.disabled = true;
     var timer = setTimeout(this.timer,1000);
    }else if(this.time == 0){
     this.btnContent = "獲取驗證碼";
     clearTimeout(timer);
     this.disabled = false;
    }
   },
   // 驗證驗證碼
   verificationCode(){
    var phoneNum = this.phoneNum;//手機號
    var verifyNum = this.verifyNum;//驗證碼
    var url = 'http://bosstan.asuscomm.com/api/common/verificationCode';
    this.$http.post(url,{
     username:phoneNum,
     code:verifyNum
    },{
     emulateJSON:true
    }).then((response)=>{
     console.log(response.body);
    });
   },
   fillContent(){
    // console.log("fillContent");
   }
  }
 }
</script>

其中,獲取驗證碼和驗證短信驗證碼的邏輯還沒有寫入。

PS:下面給大家補充一段vue短信驗證碼組件實例代碼:

Vue.component('timerBtn',{
  template: '<button v-on:click="run" :disabled="disabled || time > 0">{{ text }}</button>',
  props: {
    second: {
      type: Number,
      default: 60
    },
    disabled: {
      type: Boolean,
      default: false
    }
  },
  data:function () {
    return {
      time: 0
    }
  },
  methods: {
    run: function () {
      this.$emit('run');
    },
    start: function(){
      this.time = this.second;
      this.timer();
    },
    stop: function(){
      this.time = 0;
      this.disabled = false;
    },
    setDisabled: function(val){
      this.disabled = val;
    },
    timer: function () {
      if (this.time > 0) {
        this.time--;
        setTimeout(this.timer, 1000);
      }else{
        this.disabled = false;
      }
    }
  },
  computed: {
    text: function () {
      return this.time > 0 ? this.time + 's 后重獲取' : '獲取驗證碼';
    }
  }
});
<timer-btn ref="timerbtn" class="btn btn-default" v-on:run="sendCode" ></timer-btn>
var vm = new Vue({
  el:'#app',
  methods:{
    sendCode:function(){
      vm.$refs.timerbtn.setDisabled(true); //設(shè)置按鈕不可用
      hz.ajaxRequest("sys/sendCode?_"+$.now(),function(data){
        if(data.status){
          vm.$refs.timerbtn.start(); //啟動倒計時
        }else{
          vm.$refs.timerbtn.stop(); //停止倒計時
        }
      });
    },
  }
});

vue是什么

Vue是一套用于構(gòu)建用戶界面的漸進式JavaScript框架,Vue與其它大型框架的區(qū)別是,使用Vue可以自底向上逐層應(yīng)用,其核心庫只關(guān)注視圖層,方便與第三方庫和項目整合,且使用Vue可以采用單文件組件和Vue生態(tài)系統(tǒng)支持的庫開發(fā)復(fù)雜的單頁應(yīng)用。

到此,相信大家對“Vue怎么添加手機驗證碼組件功能”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI