在做一个项目时,登录页面调用路由跳转时

this.$router.push({ path: this.redirect || '/' })

会出现一个错误提示:

Uncaught (in promise) undefined

虽然问题不大,但是看着也心烦,偶尔有一天,搜索了下 onAbort这个关键词,发现解决的办法就是,在调用push时,设置回调函数,就可以解决这个问题,代码如下:

this.$router.push({ path: this.redirect || '/' }, onComplete => { }, onAbort => { })

后面的 onComplete => { }, onAbort => { } 就是在路由被打断时,解决因为没有回调函数而出现错误提示。

其实用两个空的箭头函数代替,那也是没问题的:

this.$router.push({ path: this.redirect || '/' }, () => {}, () => {})

 

Logo

前往低代码交流专区

更多推荐