Vue中用JSON实现刷新界面不影响倒计时
本文实例为大家分享了Vue中用JSON实现刷新界面不影响倒计时的具体代码,供大家参考,具体内容如下
效果展示:
文章图片
部分代码
isShowNucTime:boolean = false; NucAgain: boolean = false; Nuc_code_freash: boolean = false; // 判断验证码是否过期Nuc_time: number = 60; end_time: number = 0; private getCode() { let clicktime = new Date().getTime() + 60000; // 本地存储 localStorage.setItem('myEndTime', JSON.stringify(clicktime)); this.timeDown(clicktime); } // 验证码倒计时 timeDown(counttime: any) { // 判断是否正在倒计时 if (this.isShowNucTime) return; this.userChange = false; this.isShowNucTime = true; this.isGetNucCode = true; this.end_time = Number(localStorage.getItem('myEndTime')); this.Nuc_time = Math.ceil((this.end_time - new Date().getTime()) / 1000); let interval = setInterval(() => { this.Nuc_time--; if (this.Nuc_time < 1) { this.Nuc_time = 60; this.isShowNucTime = false; localStorage.removeItem('myEndTime'); if (!this.userChange) { this.NucAgain = true; } clearInterval(interval); } }, 1000) }private created(): void { let myEndTime= localStorage.getItem('myEndTime'); myEndTime && this.timeDown(myEndTime); }
重要的代码部分
文章图片
文章图片
实现原理
1.首次加载页面 点击开始
1).获取当前时间戳与要倒计时的时间相加获得要停止计时的时间
2).用localStorage保存当前时间戳
3).通过js的setInterval定时器进行倒计时
4).当倒计时结束后 清除localStorage中保存的结束时间
2.当第n次进入页面或刷新页面时
1).首先判断localStorage中倒计时是否结束
2).没有结束则继续倒计时
3).如果结束则显示重新发送验证码
- 主要运用了localStorage + new Date().getTime()
- PS:本文只是展示部分代码,一味的复制粘贴并不能运行,还是搞清楚逻辑自己实现比较靠谱!
更多vue学习教程请阅读专题《vue实战教程》
【Vue中用JSON实现刷新界面不影响倒计时】以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
推荐阅读
- vue如何使用模拟的json数据查看效果
- vue|vue ref如何获取子组件属性值
- golang|golang json、string、struct相互转换
- Vue3的10种组件通信方式总结
- 如何利用vue3实现一个俄罗斯方块
- Vue登录页面的动态粒子背景插件实现
- 解决vue页面刷新vuex中state数据丢失的问题
- Vue的三种路由模式总结
- vue项目ElementUI组件中el-upload组件与图片裁剪功能组件结合使用详解
- vue项目history模式下部署子路由跳转失败的解决