码迷,mamicode.com
首页 > 其他好文 > 详细

vue中的缓存——keep-alive,activated,deactivated

时间:2020-04-23 18:50:16      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:for   his   解决   vue   ted   操作   com   使用   执行   

1、通过keep-alive和router-view实现路由缓存,具体代码如下:
在app.vue:

<router-view v-if="!$route.meta.keepAlive"/>
<keep-alive>
<router-view v-if="$route.meta.keepAlive"/>
</keep-alive>
在路由文件中配置相关参数,来判断该路由是否需要缓存,当keepAlive存在并且值为true时,缓存该路由

{
path: ‘dCustomerPage‘,
name: ‘客户管理‘,
component: dCustomerPage,
meta:{
keepAlive: true,
}
},
2、关于activated钩子函数
首次进入该路由的页面时会触发created,mounted,activated等钩子函数,但使用this.router.go1返回该路由的时候,不会触发created和mounted,只会触发activated。如果调用this.router.go(−1)返回该路由的时候,不会触发created和mounted,只会触发activated。如果调用this.router.go(-1)返回该路由后希望手动刷新数据,可以在activated(){}中执行相关的请求,但首次进入或者f5刷新界面的时候会多次触发相关数据请求,可以用定时器解决或者类似锁的操作。

3、关于deactivated钩子函数
在离开该缓存路由后,该路由的组件并没有被销毁,如果需要销毁如定时器相关的操作可以在deactivated钩子函数中处理,类似于beforeDestroy钩子函数的调用

vue中的缓存——keep-alive,activated,deactivated

标签:for   his   解决   vue   ted   操作   com   使用   执行   

原文地址:https://www.cnblogs.com/wtsx-2019/p/12762542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!