code: "CSS_CHUNK_LOAD_FAILED"
column: 1611
line: 1
message: "Loading CSS chunk chunk-ccbf43f0 failed.
iOS 手机 在钉钉上打开 H5时,报如上错误,仅在iOS的钉钉上出现,其他系统正常,其他地方打开也正常。
// loading chunk 出错处理
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)
}
})
加上路由监听也不行