針對網(wǎng)站的登錄注冊找回密碼驗證規(guī)則【原創(chuàng)】

???????平時太忙了付燥,很少有時間整理一下技術(shù)文章,自己做的一套登錄、注冊這塊的驗證维贺,和大家分享一下:
整個頁面是長這個樣子的


normal

錯誤驗證的頁面顯示


error

正確的頁面顯示


success
用戶名(若自定義只需要修改正則即可):
 <input type="text" name="YourName"  v-model="username" :class="{ 'nameshowError': nameShow}" @blur.stop="enterName(username)" ref="nameValues" placeholder="用戶名" autocomplete="off"> 
<p class='Tel-error' v-show="nameShow">用戶名在4~16個字符之間(可包含中文,數(shù)字,字母和下劃線)</p>

驗證方法 ↓↓↓

 enterName () {
        var entername = this.$refs.nameValues.value
        var reName = /^[\u4e00-\u9fa5\w]{4,16}$/
        if (reName.test(entername)) {
          this.nameShow = false
        } else {
          this.nameShow = true
        }
   }

手機號

 <input type="tel" name="YourTel" class="reg-tel" v-model="Tel" @blur.stop="enterTel(Tel)" :class="{ 'telshowError': telShow}" ref="TelValues" placeholder="請輸入11位中國大陸手機號碼" autocomplete="off">
<p class='Tel-error' v-show="telShow">請輸入正確的手機號碼</p>

驗證方法 ↓↓↓

 enterTel () {
      var phone = this.$refs.TelValues.value
      var reTel = /^1[34578]\d{9}$/
      if (reTel.test(phone)) {
          this.telShow = false
      } else {
          this.telShow = true
      }
}

獲取驗證碼

<div class="reg-getCode-content">
          <input type="text" name="YourCode" class="reg-code" :class="{ 'codeshowError': isShow}" v-model='codes' ref="codeValues" placeholder="請輸入驗證碼" autocomplete="off">
          <input type="button" name="YourGetCode" class="reg-get-code" @click.stop="getRegistCode" value="獲取驗證碼" v-show="timeshow">
          <span v-show="!timeshow" class="count">{{count}}</span>
        </div>
<p class='Code-error' v-show="codeShow" v-model='codes'>請輸入正確的驗證碼</p>

驗證方法(30s) ↓↓↓

getRegistCode () {
        var that = this
        var Tel = that.Tel
        var codes = that.codes
        const TIME_COUNT = 30
        var reTel = /^1[34578]\d{9}$/
        if (reTel.test(Tel)) {
          if (!this.timer) {
            this.count = TIME_COUNT
            this.timeshow = false
            this.timer = setInterval(() => {
              if (this.count > 0 && this.count <= TIME_COUNT) {
                this.count--
              } else {
                this.timeshow = true
                clearInterval(this.timer)
                this.timer = null
              }
            }, 1000)
          }
          accountApi.getCodes({
            phone: Tel,
            code: codes
          }, (rsp) => {
            if (rsp.status === 200) {
              alert('發(fā)送成功')
            }
          })
        }
      }

郵箱

<input type="email" name="YourEmail" class="reg-email" @blur.stop="enterEmail(emails)" :class="{ 'emailshowError': emailShow}" v-model="emails" ref="emailValue" placeholder="郵箱" autocomplete="off">
<p class="Email-error" v-show="emailShow">請輸入正確的郵箱格式</p>

驗證方法 ↓↓↓

enterEmail () {
    var enterEmail = this.$refs.emailValue.value
    var reEmail = /^[A-Za-z0-9\u4e00-\u9fa5]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/
    if (reEmail.test(enterEmail)) {
          this.emailShow = false
    } else {
          this.emailShow = true
    }
}

設(shè)置密碼&重復(fù)密碼

<input type="password" name="YourPsd" class="reg-psd" v-model="passwords" @blur.stop="enterPsd(passwords)" :class="{ 'psdshowError': psdShow}" ref="PsdValues" placeholder="請輸入8-20位密碼" autocomplete="off">
<p class="Psd-error" v-show="psdShow">密碼不能含有非法字符,長度在8-20之間</p>
<input type="password" name="YourTruePsd" class="reg-true-psd" v-model="passwordConfirms" placeholder="確認(rèn)密碼" ref="rePsdValues" autocomplete="off">
<p class="Psd-error-again" v-show="psdShowAgain">兩次輸入的密碼不一致</p>

驗證方法 ↓↓↓

// 驗證密碼
enterPsd () {
        var enterPsd = this.$refs.PsdValues.value
        var rePsd = /^[a-zA-Z0-9]{8,20}$/
        if (rePsd.test(enterPsd)) {
          this.psdShow = false
        } else {
          this.psdShow = true
        }
}

在注冊的時候加上判斷兩次密碼是否一致彬檀,代碼如下

if (enterPsdAgain !== enterPsd) {
          this.psdShowAgain = true
        } else {
          this.psdShowAgain = false
        }

整合在注冊按鈕里面也就是

// html
<div class="registered-btn-content">
     <button class="registered-btn" @click.stop="registeredAccount" :class="{'ableClick': unableClick}" :disabled="isDisabled">注冊</button>
</div>

方法如下 ↓↓↓

registeredAccount () {
        var that = this
        var user = that.username
        var phone = that.Tel
        var code = that.codes
        var email = that.emails
        var password = that.passwords
        var passwordConfirm = that.passwordConfirms
        var enterPsd = this.$refs.PsdValues.value
        var enterPsdAgain = this.$refs.rePsdValues.value
        if (enterPsdAgain !== enterPsd) {
          this.psdShowAgain = true
        } else {
          this.psdShowAgain = false
        }
        if (user && phone && code && email && password && passwordConfirm) {
          accountApi.registerServer({
            user: user,
            phone: phone,
            code: code,
            email: email,
            password: enterPsd,
            passwordConfirm: enterPsdAgain
          }, (rsp) => {
            that.username = ''
            that.codes = ''
            that.Tel = ''
            that.emails = ''
            that.passwords = ''
            that.passwordConfirms = ''
            alert('恭喜您帆啃,注冊成功!')
            that.$router.push('/Roleset')
          })
        } else {
          alert('請?zhí)顚懲暾?)
        }
      }

另外還需要給注冊或者登陸按鈕加上回車事件

 handleEnter (el) {
        if (el.keyCode === 13) {
          this.handleLogin()
        }
      }

下面是上述代碼的樣式部分窍帝,需要自取

<style scoped>
  .reg-container{
    width: 100%;
    max-height:650px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .reg-container::-webkit-scrollbar {
    width: 9px;
  }
  .reg-container::-webkit-scrollbar-track {
    background-color: #fff;
  }
  .reg-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0)
  }
  .reg-container::-webkit-scrollbar-button {
    background-color: #fff;
  }
  .reg-container::-webkit-scrollbar-corner {
    background-color: black;
  }
  .regMember{
    width:900px;
    min-height:538px;
    background:#fff;
    border:1px solid #ccc;
    margin: 40px auto;
  }
  .regTip{
    height:56px;
    line-height:56px;
    border-bottom:1px solid #ccc;
    font-size:16px;
    font-family: PingFangSC-Medium, sans-serif;
    color:#333;
    padding-left:30px;
  }
  .reg-name, .reg-tel, .reg-email, .reg-psd, .reg-true-psd{
    display:block;
    width:420px;
    height:42px;
    line-height:42px;
    color:#666;
    font-size:14px;
    text-indent: 20px;
    font-family: PingFangSC-Medium, sans-serif;
    margin:0 auto;
    border-radius:4px;
    border:1px solid #ddd;
    background:#f5f5f5;
    outline:none;
  }
  .reg-getCode-content{
    text-align: center;
  }
  .reg-code{
    width:290px;
    height:42px;
    line-height:42px;
    color:#666;
    font-size:14px;
    text-indent: 20px;
    font-family: PingFangSC-Medium, sans-serif;
    margin:0 auto;
    margin-right:16px;
    border-radius:4px;
    border:1px solid #ddd;
    background:#f5f5f5;
    outline:none;
  }
  .reg-get-code{
    width:110px;
    height:42px;
    line-height:42px;
    display:inline-block;
    color:#666;
    font-size:14px;
    font-family: PingFangSC-Medium, sans-serif;
    margin:0 auto;
    border-radius:4px;
    border:1px solid #ddd;
    background:#f5f5f5;
    outline:none;
    cursor:pointer;
  }
  .count{
    width:110px;
    height:42px;
    line-height:42px;
    display:inline-block;
    color:#666;
    font-size:14px;
    font-family: PingFangSC-Medium, sans-serif;
    margin:0 auto;
    border-radius:4px;
    border:1px solid #ddd;
    background:#f5f5f5;
    outline:none;
  }
  .reg-name{
    margin-top:30px;
  }
  .reg-tel, .reg-getCode-content, .reg-email, .reg-psd, .reg-true-psd{
    margin-top:20px;
  }
  .reg-agreePage{
    width:100%;
    display:inline-block;
    margin-top:20px;
    margin-bottom:20px;
    margin-left:237px;
    color:#666;
    font-size:14px;
  }
  .reg-agreePage>a{
    color:#05b6f7;
    text-decoration: none;
  }
  .agreePage{
    margin-left:16px;
  }
  #reg-check[type="checkbox"]{
    position: relative;
    top:2px;
    display: none;
  }
  #cho-bg::before{
    content: '';
    display:inline-block;
    border:1px solid #06b5f8;
    width:14px;
    height:14px;
    vertical-align: middle;
    position: relative;
    right: -6px;
    bottom: 1px;
  }
  #reg-check[type="checkbox"]:checked + #cho-bg::before{
    background: url('~static/loginPic/register/ischeckbox.png') center no-repeat;
  }
  .registered-btn{
    width:420px;
    height:35px;
    background:#05b6f7;
    color:#fff;
    font-size:16px;
    border:none;
    border-radius:4px;
    cursor:pointer;
  }
  .registered-btn-content{
    text-align: center;
  }
  .go-login{
    color:#666;
    margin-left:532px;
    font-size:14px;
    margin-top:20px;
  }
  .go-login>a{
    color:#05b6f7;
    text-decoration: none;
  }
  .codeshowError,
  .nameshowError,
  .telshowError,
  .emailshowError,
  .psdshowError{
    border:1px solid #fd7b57;
    background:#ffc1b2;
  }
  .Tel-error,
  .Name-error,
  .Code-error,
  .Email-error,
  .Psd-error,
  .Psd-error-again{
    color:#fd683d;
    font-size:12px;
    margin-left:240px;
    margin-top:20px;
  }
  .ableClick{
    background:#ccc;
    cursor:default;
  }
</style>

???????另外針對找回密碼和重置密碼需要保存鑒權(quán)token努潘,后端給返回一個隨機token(在有效期內(nèi)操作),針對重置密碼就不難了坤学,無非就是調(diào)接口疯坤,還有通過手機號找回密碼,郵箱找回密碼(加上判斷某種郵箱去對應(yīng)的郵箱登錄也是有做的)深浮,需要的留個郵箱~

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末压怠,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子飞苇,更是在濱河造成了極大的恐慌菌瘫,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件玄柠,死亡現(xiàn)場離奇詭異突梦,居然都是意外死亡,警方通過查閱死者的電腦和手機羽利,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進(jìn)店門宫患,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人这弧,你說我怎么就攤上這事娃闲。” “怎么了匾浪?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵皇帮,是天一觀的道長。 經(jīng)常有香客問我蛋辈,道長属拾,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任冷溶,我火速辦了婚禮渐白,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘逞频。我一直安慰自己纯衍,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布苗胀。 她就那樣靜靜地躺著襟诸,像睡著了一般瓦堵。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上歌亲,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天菇用,我揣著相機與錄音,去河邊找鬼陷揪。 笑死刨疼,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的鹅龄。 我是一名探鬼主播揩慕,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼扮休!你這毒婦竟也來了迎卤?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤玷坠,失蹤者是張志新(化名)和其女友劉穎蜗搔,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體八堡,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡樟凄,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了兄渺。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片缝龄。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖挂谍,靈堂內(nèi)的尸體忽然破棺而出叔壤,到底是詐尸還是另有隱情,我是刑警寧澤口叙,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布炼绘,位于F島的核電站,受9級特大地震影響妄田,放射性物質(zhì)發(fā)生泄漏俺亮。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一疟呐、第九天 我趴在偏房一處隱蔽的房頂上張望脚曾。 院中可真熱鬧,春花似錦萨醒、人聲如沸斟珊。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽囤踩。三九已至,卻和暖如春晓褪,著一層夾襖步出監(jiān)牢的瞬間堵漱,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工涣仿, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留勤庐,地道東北人。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓好港,卻偏偏與公主長得像愉镰,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子钧汹,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容