uniapp 监听路由跳转

需要实现一个每次页面跳转的时候都能触发的事件,使用 uni.addInterceptor uni拦截器实现,拦截路由跳转方法

	//在app.vue的onload生命周期,打开页面就开始监听
	onLaunch() {
			let that=this;
			uni.addInterceptor('navigateTo', {//监听跳转
				success(e) {
					that.watchRouter();
				}
			})
			uni.addInterceptor('redirectTo', {//监听关闭本页面跳转
				success(e) {
					that.watchRouter();
				}
			})
			uni.addInterceptor('switchTab', {//监听tabBar跳转
				success(e) {
					that.watchRouter();
				}
			})
			uni.addInterceptor('navigateBack', {//监听返回
				success(e) {
					that.watchRouter();
				}
			})
		}
	methods:{
		watchRouter(){
			console.log('路由跳转');
		}
	}

希望此文能帮到您,欢迎留言讨论交流
如需转载请附上原文链接

你可能感兴趣的:(技术模块,uni-app,vue.js,前端,javascript)