javascript - 请问一下组件的生命周期beforeDestory是在什么情况下面触发的呢?
问题描述
进行路由跳转的时候能触发吗?我发现我进行路由跳转的时候没有触发beforeDestory里面的函数,但是有段代码需要在组件销毁之前执行,请问我应该怎么做呢?https://jsfiddle.net/44w37p34/ 刚刚有个朋友给我发了一个demo,我发现他的beforeDestory在路由跳转的时候触发了,但是我的一直都不行,请问是什么原因呢
问题解答
回答1:找到原因了,之前给router-view加了个keep-alive导致组件缓存了,所以不会触发beforeDestory和destoryed
回答2:我试了一下,切换路由的时候能触发执行beforeDestroy方法,示例如下。
const Home = {template: ` <p> <p class='section'>Some section foo</p> <p class='section'>Some section foo</p> <p class='section'>Some section foo</p> <p class='section'>Some section foo</p> </p> `,mounted() { console.log('Home mounted');},beforeDestroy() { console.log('Home destroy');} }; const Test = {template: ` <p> <p class='section'>Some section test</p> <p class='section'>Some section test</p> <p class='section'>Some section test</p> <p class='section'>Some section test</p> </p> `,mounted() { console.log('Test mounted');},beforeDestroy() { console.log('Test destroy');} };
相关文章:
1. node.js - nodejs中把热request保存下来,使用JSON.stringify(req)报错,请问怎么解决?2. javascript - vue-router怎么不能实现跳转呢3. 老哥们求助啊4. python - 模拟滑动验证码,有源码,求解5. html5 - angularjs中外部模版加载无法使用6. 在MySQL中新增字段时,报错??7. npm镜像站全新上线8. css3 - 请问一下在移动端CSS布局布局中通常需要用到哪些元素,属性?9. java - 安卓电视盒子取得了root权限但是不能安装第三方应用,请问该怎么办?10. 我的Apache卡在这里不动了怎么办?
