扫码关注官方订阅号
vue-router设置v-link跳转,跳转成功以后,刷新页面,就又回到配置v-link的这一页了,如何保持跳转之后刷新,还是留在当前页?
认证高级PHP讲师
hash都变了, 刷新,页面肯定也变了, 一定要这么做, 可以路由拦截
router.beforeEach(function(transition) { if (transition.to.name === 'grouplistedit' && transition.from.name !== 'grouplist') { transition.redirect('/group/list') } transition.next() })
判断grouplistedit页面是否从grouplist而来, 如果不是, 跳回grouplist页面
请问题主,你这个问题是怎么解决的呢?求方法~~
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
hash都变了, 刷新,页面肯定也变了, 一定要这么做, 可以路由拦截
判断grouplistedit页面是否从grouplist而来, 如果不是, 跳回grouplist页面
请问题主,你这个问题是怎么解决的呢?求方法~~