问题描述
偶现路由切换,控制台报错 ChunkLoadError: Loading chunk {n} failed.

问题分析
可能是远程资源更新,浏览器缓存,出现静态资源不一致等原因造成的

简易版解决办法

router.onError((error) => {
  const pattern = /Loading chunk (\d)+ failed/g;
  const isChunkLoadFailed = error.message.match(pattern);
  const targetPath = router.history.pending.fullPath;
  if (isChunkLoadFailed) {
    router.replace(targetPath);
  }
})

原文链接:https://blog.csdn.net/m0_37805167/article/details/130963928

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐