当前位置:   article > 正文

uniAPP中使用tabbar时,created和destroyed无效_uni-app 组件没有destroyed

uni-app 组件没有destroyed

使用tabbar时,created不管如何切换tabbar,都只加载一次。这时我们就需要通过监听路由。来模拟代替他们的功能。

watch: {
	$route(){
		console.log("成功!")
		let that = this;
		if(非定时器页面){
			clearInterval(that.timer_interval);
			that.timer_interval = null;
		}else{
			created中需要执行的代码
		}
	}
},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/318599
推荐阅读