小程序如何開通短信驗證碼登錄,小程序短信驗證碼倒計時
2018-09-14
導讀:我們在使用小程序時,有時會出現(xiàn)獲取短信驗證碼登錄的情況,這種情況是如何開發(fā)實現(xiàn),下面為大家解答...
我們在使用小程序時,有時會出現(xiàn)獲取短信驗證碼登錄的情況,這種情況是如何開發(fā)實現(xiàn),下面為大家解答
需求:輸入手機號 -> 點擊獲取驗證碼 -> 進入60s倒計時
短信驗證碼登錄
- data: {
- seconds: 0, // 讀秒
- timer: '' // 計時器
- },
- let that = this
- // 開始倒計時
- that.setData({
- seconds: 60,
- timer: setInterval(function(){
- let seconds = that.data.seconds
- that.setData({ seconds: seconds - 1 })
- if (that.data.seconds == 0) {
- // 讀秒結束 清空計時器
- clearInterval(that.data.timer)
- }
- }, 1000)
- })
第二部分:如何開通一個小商店