亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

vue倒計時刷新頁面不會從頭開始的解決方法

發布時間:2020-08-19 17:55:14 來源:腳本之家 閱讀:342 作者:千杯樂逍遙 欄目:web開發

開啟倒計時,直接保存到vuex中,且存儲到本地持久化

// state.js
const runTime = localStorage.getItem('time');
paymentRunTime:runTime
// mutations.js

TimeReduction(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 class="captcha-input" placeholder="輸入驗證碼" auto-focus />
 <div v-if="showtime===null" class="captcha-button" @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倒計時刷新頁面不會從頭開始的資料請關注億速云其它相關文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

庆阳市| 苏尼特左旗| 宜章县| 武乡县| 秀山| 分宜县| 无极县| 江孜县| 南平市| 天津市| 鱼台县| 迁安市| 涡阳县| 钟祥市| 普安县| 深州市| 长丰县| 济南市| 金溪县| 顺昌县| 湖口县| 平陆县| 大化| 化隆| 克东县| 城步| 余庆县| 靖安县| 巴马| 金堂县| 萍乡市| 卓尼县| 阿拉善右旗| 高清| 苏州市| 高雄县| 恩施市| 万山特区| 嘉荫县| 进贤县| 余干县|