Vue.js router 文档中路由元信息的时候使用的auth.loggedIn()和query

  1. 在vuejs router文档中,

 router.beforeEach((to, from, next) => {      if (to.matched.some(record => record.meta.requiresAuth)) {       
  if (!auth.loggedIn()) {          next({            path: '/login',            query: { redirect: to.fullPath }
          })
        } else {          next()
        }
      } else {        next() 
      }
    })
    
    
  这段代码中的auth.loggedIn()这个方法应该写在那里?
   还有就是这个query字段有什么用,没有也是可以的啊?


小怪兽爱吃肉
浏览 1153回答 1
1回答

智慧大石

auth.loggedIn()上面这个方法是自定义的,判断有没有登录用的。to.fullPath是当前页的路由地址。query是为了登录成功之后可以根据query中的内容跳转回原来的路由(页面)。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript