在 uniapp
中模拟并实现对应 vue-router
的部分 Api 的功能
App | H5 | 微信小程序 | 支付宝小程序 | 百度小程序 | 头条小程序 | QQ 小程序 | 360 小程序 |
---|---|---|---|---|---|---|---|
Android | √ | √ | √ | √ | √ | √ | √ |
您可以使用 Yarn 或 npm 安装该软件包(选择一个)
yarn add uniapp-route-guards
npm install uniapp-route-guards --save
// main.js
import Vue from 'vue';
import UniRouteGuards from 'uniapp-route-guards';
Vue.use(UniRouteGuards);
// main.js
const guard = new UniRouteGuards();
// 自定义路由拦截白名单
const WHILE_LIST = ['/src/pages/home', '/src/pages/log'];
// 跳过路由白名单拦截
guard.beforeEach((to, from, next) => {
if (WHILE_LIST.includes(from.url)) {
return next(to.url);
}
next();
});
// 拦截 调用 uni.switchTab 页面C并跳转到 页面D
guard.beforeEach((to, from, next) => {
console.log('\n');
console.log('=================');
console.log('guard.beforeEach');
console.log('to: ', to);
console.log('from: ', from);
console.log('=================');
console.log('\n');
if (to.action === 'switchTab' && to.url === '/src/pages/c') {
return next({
url: '/src/pages/d',
action: 'navigateTo'
});
}
next();
});
guard.afterEach((to, from) => {
console.log('\n');
console.log('=================');
console.log('guard.afterEach');
console.log('to: ', to);
console.log('from: ', from);
console.log('=================');
console.log('\n');
});
// 注册 路由守卫出现异常回调的钩子
guard.onError((errMsg) => {
console.error('route-guards error: ' + errMsg);
});
路由跳转的使用方法和 uniapp
路由跳转一样的
// 例如
uni.navigateTo({
url: '/pages/a'
});
uni.redirectTo({
url: '/pages/a'
});
uni.reLaunch({
url: '/pages/a'
});
uni.switchTab({
url: '/pages/a'
});
uni.navigateBack();
例如调用某个路由方法时并取消路由拦截
uni.navigateTo(
{
url: '/pages/a',
success() {
console.log('is success');
},
fail() {
console.error('is fail');
}
},
false
);
// 或
uni.navigateBack(null, false);
- 调用全局的
beforeEach
守卫 - 路由跳转
- 调用全局的
afterEach
守卫
1.在拦截器中访问 vm
// 例如:
guard.beforeEach((to, from, next) => {
next((vm) => {
// 通过 `vm` 访问组件实例
});
});
2.拦截原生的 tabbar
3.拦截原生的 navBar
的 back
参数名称 | 类型 | 默认值 | 是否必填 | 说明 |
---|---|---|---|---|
beforeEach | Function | - | false | 注册一个回调,在路由跳转之前运行 |
afterEach | Function | - | false | 注册一个回调,在路由跳转之后运行 |
onError | Function | - | false | 注册一个回调,该回调会在路由导航过程中出错时被调用 |