vue倒計時刷新頁面不會從頭開始的解決方法
開啟倒計時,直接保存到vuex中,且存儲到本地持久化
// state.jsconst runTime = localStorage.getItem(’time’);paymentRunTime:runTime
// mutations.jsTimeReduction(state) { this.timerId = setInterval(() => { if (state.paymentRunTime === 0) { state.paymentRunTime = 60; return clearInterval(this.timerId) } state.paymentRunTime -= 1; localStorage.setItem(’time’,state.paymentRunTime) },1000); },
在需要用到的頁面鉤子函數調用方法, created(){ this.$store.commit(TimeReduction) }
知識點擴展:
倒計時實例代碼:
<template> <div class='captcha-row'> <input placeholder='輸入驗證碼' auto-focus /> <div v-if='showtime===null' @click='send'> 獲取驗證碼 </div> <div v-else class='captcha-button'> {{showtime}} </div> </div></template>
<script>export default { data() { return { // 計時器,注意需要進行銷毀 timeCounter: null, // null 則顯示按鈕 秒數則顯示讀秒 showtime: null } }, methods: { // 倒計時顯示處理 countDownText(s) { this.showtime = `${s}s后重新獲取` }, // 倒計時 60秒 不需要很精準 countDown(times) { const self = this; // 時間間隔 1秒 const interval = 1000; let count = 0; self.timeCounter = setTimeout(countDownStart, interval); function countDownStart() { if (self.timeCounter == null) { return false; } count++ self.countDownText(times - count + 1); if (count > times) { clearTimeout(self.timeCounter) self.showtime = null; } else { self.timeCounter = setTimeout(countDownStart, interval) } } }, send() { this.countDown(60); } },}</script>
以上就是vue倒計時刷新頁面不會從頭開始的解決方法的詳細內容,更多關于vue倒計時刷新頁面不會從頭開始的資料請關注好吧啦網其它相關文章!
相關文章: