vue-router beforeRouterEnter next() 传参
vue-router中,单组件内部使用 beforeRouterEnter时,由于该组件此时还未创建,所以无法使用 this,vue官网提示,在next()中使用回调获取实例官方文档如下:const Foo = {template: `...`,beforeRouteEnter (to, from, next) {// 在渲染该组件的对应路由被 confirm 前调...
·
vue-router中,单组件内部使用 beforeRouterEnter时,由于该组件此时还未创建,所以无法使用 this,vue官网提示,在next()中使用回调获取实例
官方文档如下:
const Foo = {
template: `...`,
beforeRouteEnter (to, from, next) {
// 在渲染该组件的对应路由被 confirm 前调用
// 不!能!获取组件实例 `this`
// 因为当守卫执行前,组件实例还没被创建
},
beforeRouteUpdate (to, from, next) {
// 在当前路由改变,但是该组件被复用时调用
// 举例来说,对于一个带有动态参数的路径 /foo/:id,在 /foo/1 和 /foo/2 之间跳转的时候,
// 由于会渲染同样的 Foo 组件,因此组件实例会被复用。而这个钩子就会在这个情况下被调用。
// 可以访问组件实例 `this`
},
beforeRouteLeave (to, from, next) {
// 导航离开该组件的对应路由时调用
// 可以访问组件实例 `this`
}
}
官方提供的获取办法
beforeRouteEnter (to, from, next) {
next(vm => {
// 通过 `vm` 访问组件实例
})
}
项目中使用
在vue-cli 中,该方法放置位置为与data、computed等同级,调用示例如下
beforeRouteEnter (to, from, next) {
next(vm => {
if (from.path === '/') {
vm.isSelfWeb = false
let stateObj = {
foo: '/'
}
history.pushState(stateObj, null, '/Home')
} else {
vm.isSelfWeb = true
}
})
}
更多推荐
已为社区贡献3条内容
所有评论(0)