溫馨提示×

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

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

ionic+AngularJs如何實(shí)現(xiàn)獲取驗(yàn)證碼倒計(jì)時(shí)按鈕

發(fā)布時(shí)間:2021-06-21 11:40:10 來(lái)源:億速云 閱讀:170 作者:小新 欄目:web開(kāi)發(fā)

小編給大家分享一下ionic+AngularJs如何實(shí)現(xiàn)獲取驗(yàn)證碼倒計(jì)時(shí)按鈕,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

按鈕功能為:點(diǎn)擊“獲取驗(yàn)證碼”——按鈕不可用-設(shè)置倒計(jì)時(shí)-60秒后重新獲取。

主要實(shí)現(xiàn)原理:點(diǎn)擊后,設(shè)置一個(gè)$interval,每一秒更改一次剩余時(shí)間,并依賴Angular數(shù)據(jù)綁定實(shí)時(shí)顯示在頁(yè)面中。設(shè)置一個(gè)$timeout,60秒后將按鈕初始化到可用狀態(tài)。

實(shí)現(xiàn)代碼:

(1)js代碼,設(shè)置成一個(gè)directive以便多次調(diào)用。

angular.module('winwin').directive('timerbutton', function($timeout, $interval){
  return {
    restrict: 'AE',
    scope: {
      showTimer: '=',
      timeout: '='
    },
    link: function(scope, element, attrs){
      scope.timer = false;
      scope.timeout = 60000;
      scope.timerCount = scope.timeout / 1000;
      scope.text = "獲取驗(yàn)證碼";

      scope.onClick = function(){
        scope.showTimer = true;
        scope.timer = true;
        scope.text = "秒后重新獲取";
        var counter = $interval(function(){
          scope.timerCount = scope.timerCount - 1;
        }, 1000);

        $timeout(function(){
          scope.text = "獲取驗(yàn)證碼";
          scope.timer = false;
          $interval.cancel(counter);
          scope.showTimer = false;
          scope.timerCount = scope.timeout / 1000;
        }, scope.timeout);
      }
    },
    template: '<button on-tap="onClick()" class="button button-calm xgmm-btn" ng-disabled="timer"><span ng-if="showTimer">{{ timerCount }}</span>{{text}}</button>'
  };
});

(2)html代碼

 <timerbutton show-timer="false">獲取驗(yàn)證碼</timerbutton>

實(shí)現(xiàn)效果:

(1)點(diǎn)擊之前

  ionic+AngularJs如何實(shí)現(xiàn)獲取驗(yàn)證碼倒計(jì)時(shí)按鈕

(2)點(diǎn)擊之后

  ionic+AngularJs如何實(shí)現(xiàn)獲取驗(yàn)證碼倒計(jì)時(shí)按鈕 

以上是“ionic+AngularJs如何實(shí)現(xiàn)獲取驗(yàn)證碼倒計(jì)時(shí)按鈕”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

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

AI