Uncaught (in promise) undefined
Vue-router >= 3.1.0 版本在使用 push 和 replace 进行跳转时控制台会抛出异常,其主要原因是 vue-router 3.1.0 版本以后 router.push('/path') 返回了 promise ,而当路由跳转异常时便会抛出错误,此前版本没有报错是因为 vue-router 根本没有返回错误信息,所以之前我们一直无法捕获异常,而并非异常不存在。当然,很多时候这些报错我们不用关心,除非有些地方需要特殊处理。下面给出些解决方法。
使用时进行错误拦截:
router.push('/path').catch(err => {})
全局进行错误拦截:
const routerMethods = ['push', 'replace']
routerMethods.forEach(method => {
const originalCall = VueRouter.prototype[method]
VueRouter.prototype[method] = function(location, onResolve, onReject) {
if (onResolve || onReject) {
return originalCall.call(this, location, onResolve, onReject)
}
return originalCall.call(this, location).catch(err => err)
}
})