# beforeRouteUpdate的应用
使用场景:
组件复用;路由跳转;
beforeRouteUpdate (to, from, next) {
// 在当前路由改变,但是该组件被复用时调用
// 举例来说,对于一个带有动态参数的路径 /foo/:id,在 /foo/1 和 /foo/2 之间跳转的时候,
// 由于会渲染同样的 Foo 组件,因此组件实例会被复用。而这个钩子就会在这个情况下被调用。
// 可以访问组件实例 `this`
},
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
beforeRouteUpdate(to, from, next) {
if (to.path === from.path) {
const newQuery = Object.assign({}, to.query)
const oldQuery = Object.assign({}, from.query)
if (JSON.stringify(newQuery) !== JSON.stringify(oldQuery)) {
this.getList()
}
}
next()
}
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10