今天项目中遇到了一个问题,当token失效之后要调回登录页,由于项目没有登录页,需要跳转回官网页面,所以出现了如下问题
然后需要在router的文件里面添加上以下代码便可以解决这个问题
const VueRouterPush = VueRouter.prototype.push
VueRouter.prototype.push = function push (to) {
return VueRouterPush.call(this, to).catch(err => err)
}
今天项目中遇到了一个问题,当token失效之后要调回登录页,由于项目没有登录页,需要跳转回官网页面,所以出现了如下问题
然后需要在router的文件里面添加上以下代码便可以解决这个问题
const VueRouterPush = VueRouter.prototype.push
VueRouter.prototype.push = function push (to) {
return VueRouterPush.call(this, to).catch(err => err)
}