您的位置:首页 > 财经 > 金融 > index.ts:15 [Vue Router warn]: No match found for location with path “/xxx/xxx“

index.ts:15 [Vue Router warn]: No match found for location with path “/xxx/xxx“

2025/1/8 5:50:08 来源:https://blog.csdn.net/huang_hai_an/article/details/141137747  浏览:    关键词:index.ts:15 [Vue Router warn]: No match found for location with path “/xxx/xxx“

问题描述

当页面刷新时,页面路由空白,控制台警告找不到路由
index.ts:15 [Vue Router warn]: No match found for location with path “/xxx/xxx”
实际原因是动态路由未生效。

如何解决?

*vue-router4.0 版本在beforeEach使用addRouter动态添加路由后,路由没有生效。
* 控制台发出警告[Vue Router warn]: No match found for location with path “/xxxx”;
* 官网给出了解决方案, 在动态添加路由之后且添加的动态路由地址和当前访问的地址一致,使用 *router.push()手动导航。

解决代码!

router.beforeEach(async (to) => {
if (!to.matched.length) {
router.push(to)
}
return true
})

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com