使用动态命名路由时,路由保护器使用beforeEnter重定向到404

时间:2019-05-25 17:40:27

标签: vuejs2 vue-router feathersjs feathers-vuex

当面板不存在时,我正在尝试重定向到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。

0 个答案:

没有答案