美文网首页
RangeError: Maximum call stack s

RangeError: Maximum call stack s

作者: SailingBytes | 来源:发表于2020-09-10 13:32 被阅读0次

使用vue beforeRouteLeave出现下面错误,是因为出现了死循环, 因为在调用next('/mine')时, 又重新触发了beforeRouteLeave, 从而又执行了next('/mine'), 所以出现了死循环。

RangeError: Maximum call stack size exceeded

处理方式,判断下当前路由地址。

beforeRouteLeave(to, from, next) {

  if (to.fullPath === '/mine') {

    return next()

  } else if (to.path == '/mine/refund') {

    next({ path: '/mine' });

  } else {

    next()

  }

}

相关文章

网友评论

      本文标题:RangeError: Maximum call stack s

      本文链接:https://www.haomeiwen.com/subject/gthpektx.html