博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Vue 页面15分钟无操作时返回首页
阅读量:5119 次
发布时间:2019-06-13

本文共 1401 字,大约阅读时间需要 4 分钟。

这种需求手机端和pc端一般是不存在的,因为都是可以手动操作刷新的。

最近在做一个户外社区大屏的项目,因为大屏是全屏显示,没法手动刷新,不可能在页面专门做一个刷新按钮,也不好看,那这样的需求就显得格外重要了。

首先我们来分析一下需求:

  1.15分钟——需要定时器

  2.无操作——监控页面上的点击、触摸、滑动等事件

  3.返回首页——切换路由

我们只需要设置一个定时器,在一进入页面的时候就开始计时,如果15分钟内有点击、触摸、滑动等操作时就重新计时,时间一到就切换路由。

而且我们还需要新建一个空白组件rbck.vue(路由名字随意),切换时先跳转到 /rbck  ,在rbck.vue里立即执行跳转到首页,达到重定向并刷新的效果。

在main.js里

配置路由

import rbck from './components/rbck.vue'
const routes = [  {    path: '/rbck',    meta: {      title: '跳转页',      scrollToTop: true    },    component:rbck,  }]

  

created() {    this.isTimeOut();}

  

data() {    return {      timeOut: ''    }  },

  

methods: {    //页面15分钟无操作时返回首页    startTimer() {      let that = this;        clearInterval(that.timeOut);        that.timeOut = setInterval(function () {          that.$router.push({path: '/rbck'})        },1000*60*15)    },    isTimeOut() {      let that = this;      if(that.$route.path == "/") {        that.startTimer();      }      document.body.onmouseup = that.startTimer;      document.body.onmousemove = that.startTimer;      document.body.onkeyup  = that.startTimer;      document.body.onclick  = that.startTimer;      document.body.ontouchend  = that.startTimer;    },}

解决跳转之前路由等于跳转之后路由问题:

watch: {    '$route' (to, from) {      if (to.path == from.path) {        this.$router.push({          path: '/rbck'        })      }    }  },

rbck.vue代码如下:

  

转载于:https://www.cnblogs.com/jrg-Archer/p/8005123.html

你可能感兴趣的文章
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
一些方便系统诊断的bash函数
查看>>
jquery中ajax返回值无法传递到上层函数
查看>>
css3之transform-origin
查看>>
Master选举原理
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
小别离
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
Java 多态 虚方法
查看>>
万能的SQLHelper帮助类
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
Html5 离线页面缓存
查看>>
《绿色·精简·性感·迷你版》易语言,小到不可想象
查看>>
Android打包key密码丢失找回
查看>>
VC6.0调试技巧(一)(转)
查看>>