当面板不存在时,我正在尝试重定向到404页面。但是我不知道如何获取ID以检查它是否存在。同样不确定如何从路由器检查它是否存在。
我的路线:
{
path: "/:url_slug",
props: true,
component: Board,
beforeEnter(to, from, next) {
if () {
}
next()
},
children: [{
path: "/:id",
props: true,
component: Post
}]
}
示例:
localhost:8080/test
存在
localhost:8080/test2
不会退出,应该重定向到404。