vue beforeRouteLeave, beforeRouteEnter使用
beforeRouteLeave(to, from, next){//可以直接获取this实例if (to.path=='/prepage') {to.query.code=this.code;}next();},beforeRouteEnter(to, from, next){//不能直接获取this实例n...
·
beforeRouteLeave(to, from, next){
//可以直接获取this实例
if (to.path=='/prepage') {
to.query.code=this.code;
}
next();
},
beforeRouteEnter(to, from, next){
//不能直接获取this实例
next(vm => {
if (from.query.checkFull) {
vm._data.checked=true;
}
})
}
使用例子:如下单选择收货地址,选择优惠券等需要从下一个页面带参数回上一个页面,也需要记住下一个页面的选择状态
更多推荐
已为社区贡献4条内容
所有评论(0)