最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Vue JS permissions on routes - Stack Overflow

programmeradmin0浏览0评论

I have a route that is like this:

{ path: '/testpage', ponent: Testpage},

I am using this to limit the route based on a user role like this:

let roles = {"exdir":"/testpage/"};

if (loggedIn){
    // return next('/affiliatepage')
    return next(roles[user.user.role]);
}

Now, I am trying to make it so that the user with the correct role can access that route plus all subroutes. For example, if I added:

/testpage/subpage

Is that even possible with the way I have it?

I have a route that is like this:

{ path: '/testpage', ponent: Testpage},

I am using this to limit the route based on a user role like this:

let roles = {"exdir":"/testpage/"};

if (loggedIn){
    // return next('/affiliatepage')
    return next(roles[user.user.role]);
}

Now, I am trying to make it so that the user with the correct role can access that route plus all subroutes. For example, if I added:

/testpage/subpage

Is that even possible with the way I have it?

Share Improve this question edited Dec 19, 2018 at 0:18 Mihai Chelaru 8,32215 gold badges48 silver badges52 bronze badges asked Dec 18, 2018 at 20:35 CarterCarter 1231 gold badge1 silver badge9 bronze badges 1
  • 1 Sounds like you want nested routes. See router.vuejs/guide/essentials/nested-routes.html – Phil Commented Dec 18, 2018 at 22:37
Add a ment  | 

1 Answer 1

Reset to default 10

The way I use Navigation Guards is with beforeEnter. Some documentation on beforeEnter can be found here I have provided an example below. The if condition will check if the user has a name, you could check for a permission level. If the condition is true, proceed to /something. Otherwise it will redirect you back to home.

// Example of a Nav Guard
export default new Router({
  mode: 'history',
  routes: [
    {
      path: '/', // Home
      name: 'Home',
      ponent: Home
    },
    {
      path: '/something',
      name: 'Something',
      ponent: Something,
      props: true,
      // Route Guard
      beforeEnter: (to, from, next) => {
        if(to.params.blah) {
          next() // Take you to /something
        } else {
            // If params.blah is blank or in your case, does not have permission, redirect back to the home page
          next({ name: 'Home' }) 
        }
      }
    }
  ]
})

Below is an example method which will set the name for the router and allow the app to continue to /something

methods: {
  enterSomething() {
    if(this.blah) {
      this.$router.push({ name: 'Something', params: { name: this.blah } })
    } else {
      // Handle else condition logic
    }
  }
}

Hopefully this helps you set up route guards :)

发布评论

评论列表(0)

  1. 暂无评论