在開發元件庫或者外掛,經常會需要進行全域性異常處理,從而實現:
- 全域性統一處理異常;
- 為開發者提示錯誤資訊;
- 方案降級處理等等。
那麼如何實現上面功能呢?
本文先簡單實現一個異常處理方法,然後結合 Vue3 原始碼中的實現詳細介紹,最後總結實現異常處理的幾個核心。
本文 Vue3 版本為 3.0.11
一、前端常見異常
對於前端來說,常見的異常比較多,比如:
- JS 語法異常;
- Ajax 請求異常;
- 靜態資源載入異常;
- Promise 異常;
- iframe 異常;
- 等等
對於這些異常如何處理,可以閱讀這兩篇文章:
最常用的比如:
1. window.onerror
通過 window.onerror
文件可知,當 JS 執行時發生錯誤(包括語法錯誤),觸發 window.onerror()
:
window.onerror = function(message, source, lineno, colno, error) {
console.log('捕獲到異常:',{message, source, lineno, colno, error});
}
函式引數:
- message:錯誤資訊(字串)。可用於HTML
onerror=""
處理程式中的event
。 - source:發生錯誤的指令碼URL(字串)
- lineno:發生錯誤的行號(數字)
- colno:發生錯誤的列號(數字)
- error:Error物件(物件)
若該函式返回true,則阻止執行預設事件處理函式。
2. try...catch 異常處理
另外,我們也經常會使用 try...catch
語句處理異常:
try {
// do something
} catch (error) {
console.error(error);
}
更多處理方式,可以閱讀前面推薦的文章。
3. 思考
大家可以思考下,自己在業務開發過程中,是否也是經常要處理這些錯誤情況?
那麼像 Vue3 這樣複雜的庫,是否也是到處通過 try...catch
來處理異常呢?
接下來一起看看。
二、實現簡單的全域性異常處理
在開發外掛或庫時,我們可以通過 try...catch
封裝一個全域性異常處理方法,將需要執行的方法作為引數傳入,呼叫方只要關心呼叫結果,而無需知道該全域性異常處理方法內部邏輯。
大致使用方法如下:
const errorHandling = (fn, args) => {
let result;
try{
result = args ? fn(...args) : fn();
} catch (error){
console.error(error)
}
return result;
}
測試一下:
const f1 = () => {
console.log('[f1 running]')
throw new Error('[f1 error!]')
}
errorHandling(f1);
/*
輸出:
[f1 running]
Error: [f1 error!]
at f1 (/Users/wangpingan/leo/www/node/www/a.js:14:11)
at errorHandling (/Users/wangpingan/leo/www/node/www/a.js:4:39)
at Object.<anonymous> (/Users/wangpingan/leo/www/node/www/a.js:17:1)
at Module._compile (node:internal/modules/cjs/loader:1095:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1147:10)
at Module.load (node:internal/modules/cjs/loader:975:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
at node:internal/main/run_main_module:17:47
*/
可以看到,當需要為方法做異常處理時,只要將該方法作為引數傳入即可。
但是上面示例跟實際業務開發的邏輯差得有點多,實際業務中,我們經常會遇到方法的巢狀呼叫,那麼我們試一下:
const f1 = () => {
console.log('[f1]')
f2();
}
const f2 = () => {
console.log('[f2]')
f3();
}
const f3 = () => {
console.log('[f3]')
throw new Error('[f3 error!]')
}
errorHandling(f1)
/*
輸出:
[f1 running]
[f2 running]
[f3 running]
Error: [f3 error!]
at f3 (/Users/wangpingan/leo/www/node/www/a.js:24:11)
at f2 (/Users/wangpingan/leo/www/node/www/a.js:19:5)
at f1 (/Users/wangpingan/leo/www/node/www/a.js:14:5)
at errorHandling (/Users/wangpingan/leo/www/node/www/a.js:4:39)
at Object.<anonymous> (/Users/wangpingan/leo/www/node/www/a.js:27:1)
at Module._compile (node:internal/modules/cjs/loader:1095:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1147:10)
at Module.load (node:internal/modules/cjs/loader:975:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
*/
這樣也是沒問題的。那麼接下來就是在 errorHandling
方法的 catch
分支實現對應異常處理即可。
接下來看看 Vue3 原始碼中是如何處理的?
三、Vue3 如何實現異常處理
理解完上面示例,接下來看看在 Vue3 原始碼中是如何實現異常處理的,其實現起來也是很簡單。
1. 實現異常處理方法
在 errorHandling.ts
檔案中定義了 callWithErrorHandling
和 callWithAsyncErrorHandling
兩個處理全域性異常的方法。
顧名思義,這兩個方法分別處理:
callWithErrorHandling
:處理同步方法的異常;callWithAsyncErrorHandling
:處理非同步方法的異常。
使用方式如下:
callWithAsyncErrorHandling(
handler,
instance,
ErrorCodes.COMPONENT_EVENT_HANDLER,
args
)
程式碼實現大致如下:
// packages/runtime-core/src/errorHandling.ts
// 處理同步方法的異常
export function callWithErrorHandling(
fn: Function,
instance: ComponentInternalInstance | null,
type: ErrorTypes,
args?: unknown[]
) {
let res
try {
res = args ? fn(...args) : fn(); // 呼叫原方法
} catch (err) {
handleError(err, instance, type)
}
return res
}
// 處理非同步方法的異常
export function callWithAsyncErrorHandling(
fn: Function | Function[],
instance: ComponentInternalInstance | null,
type: ErrorTypes,
args?: unknown[]
): any[] {
// 省略其他程式碼
const res = callWithErrorHandling(fn, instance, type, args)
if (res && isPromise(res)) {
res.catch(err => {
handleError(err, instance, type)
})
}
// 省略其他程式碼
}
callWithErrorHandling
方法處理的邏輯比較簡單,通過簡單的 try...catch
做一層封裝。
而 callWithAsyncErrorHandling
方法就比較巧妙,通過將需要執行的方法傳入 callWithErrorHandling
方法處理,並將其結果通過 .catch
方法進行處理。
2. 處理異常
在上面程式碼中,遇到報錯的情況,都會通過 handleError()
處理異常。其實現大致如下:
// packages/runtime-core/src/errorHandling.ts
// 異常處理方法
export function handleError(
err: unknown,
instance: ComponentInternalInstance | null,
type: ErrorTypes,
throwInDev = true
) {
// 省略其他程式碼
logError(err, type, contextVNode, throwInDev)
}
function logError(
err: unknown,
type: ErrorTypes,
contextVNode: VNode | null,
throwInDev = true
) {
// 省略其他程式碼
console.error(err)
}
保留核心處理邏輯之後,可以看到這邊處理也是相當簡單,直接通過 console.error(err)
輸出錯誤內容。
3. 配置 errorHandler 自定義異常處理函式
在使用 Vue3 時,也支援指定自定義異常處理函式,來處理元件渲染函式和偵聽器執行期間丟擲的未捕獲錯誤。這個處理函式被呼叫時,可獲取錯誤資訊和相應的應用例項。
文件參考:《errorHandler》
使用方法如下,在專案 main.js
檔案中配置:
// src/main.js
app.config.errorHandler = (err, vm, info) => {
// 處理錯誤
// `info` 是 Vue 特定的錯誤資訊,比如錯誤所在的生命週期鉤子
}
那麼 errorHandler()
是何時執行的呢?我們繼續看看原始碼中 handleError()
的內容,可以發現:
// packages/runtime-core/src/errorHandling.ts
export function handleError(
err: unknown,
instance: ComponentInternalInstance | null,
type: ErrorTypes,
throwInDev = true
) {
const contextVNode = instance ? instance.vnode : null
if (instance) {
// 省略其他程式碼
// 讀取 errorHandler 配置項
const appErrorHandler = instance.appContext.config.errorHandler
if (appErrorHandler) {
callWithErrorHandling(
appErrorHandler,
null,
ErrorCodes.APP_ERROR_HANDLER,
[err, exposedInstance, errorInfo]
)
return
}
}
logError(err, type, contextVNode, throwInDev)
}
通過 instance.appContext.config.errorHandler
取到全域性配置的自定義錯誤處理函式,存在時則執行,當然,這邊也是通過前面定義的 callWithErrorHandling
來呼叫。
4. 呼叫 errorCaptured 生命週期鉤子
在使用 Vue3 的時候,也可以通過 errorCaptured
生命週期鉤子來捕獲來自後代元件的錯誤。
文件參考:《errorCaptured》
入參如下:
(err: Error, instance: Component, info: string) => ?boolean
此鉤子會收到三個引數:錯誤物件、發生錯誤的元件例項以及一個包含錯誤來源資訊的字串。
此鉤子可以返回 false
以阻止該錯誤繼續向上傳播。
有興趣的同學可以通過文件,檢視具體的錯誤傳播規則。
使用方法如下,父元件監聽 onErrorCaptured
生命週期(示例程式碼使用 Vue3 setup 語法):
<template>
<Message></Message>
</template>
<script setup>
// App.vue
import { onErrorCaptured } from 'vue';
import Message from './components/Message.vue'
onErrorCaptured(function(err, instance, info){
console.log('[errorCaptured]', err, instance, info)
})
</script>
子元件如下:
<template>
<button @click="sendMessage">傳送訊息</button>
</template>
<script setup>
// Message.vue
const sendMessage = () => {
throw new Error('[test onErrorCaptured]')
}
</script>
當點選「傳送訊息」按鈕,控制檯便輸出錯誤:
[errorCaptured] Error: [test onErrorCaptured]
at Proxy.sendMessage (Message.vue:36:15)
at _createElementVNode.onClick._cache.<computed>._cache.<computed> (Message.vue:3:39)
at callWithErrorHandling (runtime-core.esm-bundler.js:6706:22)
at callWithAsyncErrorHandling (runtime-core.esm-bundler.js:6715:21)
at HTMLButtonElement.invoker (runtime-dom.esm-bundler.js:350:13) Proxy {sendMessage: ƒ, …} native event handler
可以看到 onErrorCaptured
生命週期鉤子正常執行,並輸出子元件 Message.vue
內的異常。
那麼這個又是如何實現呢?還是看 errorHandling.ts
中的 handleError()
方法:
// packages/runtime-core/src/errorHandling.ts
export function handleError(
err: unknown,
instance: ComponentInternalInstance | null,
type: ErrorTypes,
throwInDev = true
) {
const contextVNode = instance ? instance.vnode : null
if (instance) {
let cur = instance.parent
// the exposed instance is the render proxy to keep it consistent with 2.x
const exposedInstance = instance.proxy
// in production the hook receives only the error code
const errorInfo = __DEV__ ? ErrorTypeStrings[type] : type
while (cur) {
const errorCapturedHooks = cur.ec // ①取出元件配置的 errorCaptured 生命週期方法
if (errorCapturedHooks) {
// ②迴圈執行 errorCaptured 中的每個 Hook
for (let i = 0; i < errorCapturedHooks.length; i++) {
if (
errorCapturedHooks[i](err, exposedInstance, errorInfo "i") === false
) {
return
}
}
}
cur = cur.parent
}
// 省略其他程式碼
}
logError(err, type, contextVNode, throwInDev)
}
這邊會先獲取 instance.parent
作為當前處理的元件例項進行遞迴,每次將取出元件配置的 errorCaptured
生命週期方法的陣列並迴圈呼叫其每一個鉤子,然後再取出當前元件的父元件作為引數,最後繼續遞迴呼叫下去。
5. 實現錯誤碼和錯誤訊息
Vue3 還為異常定義了錯誤碼和錯誤資訊,在不同的錯誤情況有不同的錯誤碼和錯誤資訊,讓我們能很方便定位到發生異常的地方。
錯誤碼和錯誤資訊如下:
// packages/runtime-core/src/errorHandling.ts
export const enum ErrorCodes {
SETUP_FUNCTION,
RENDER_FUNCTION,
WATCH_GETTER,
WATCH_CALLBACK,
// ... 省略其他
}
export const ErrorTypeStrings: Record<number | string, string> = {
// 省略其他
[LifecycleHooks.RENDER_TRACKED]: 'renderTracked hook',
[LifecycleHooks.RENDER_TRIGGERED]: 'renderTriggered hook',
[ErrorCodes.SETUP_FUNCTION]: 'setup function',
[ErrorCodes.RENDER_FUNCTION]: 'render function',
// 省略其他
[ErrorCodes.SCHEDULER]:
'scheduler flush. This is likely a Vue internals bug. ' +
'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/vue-next'
}
當不同錯誤情況,根據錯誤碼 ErrorCodes
來獲取 ErrorTypeStrings
錯誤資訊進行提示:
// packages/runtime-core/src/errorHandling.ts
function logError(
err: unknown,
type: ErrorTypes,
contextVNode: VNode | null,
throwInDev = true
) {
if (__DEV__) {
const info = ErrorTypeStrings[type]
warn(`Unhandled error${info ? ` during execution of ${info}` : ``}`)
// 省略其他
} else {
console.error(err)
}
}
6. 實現 Tree Shaking
關於 Vue3 實現 Tree Shaking 的介紹,可以看我之前寫的高效實現框架和 JS 庫瘦身。
其中,logError
方法中就使用到了:
// packages/runtime-core/src/errorHandling.ts
function logError(
err: unknown,
type: ErrorTypes,
contextVNode: VNode | null,
throwInDev = true
) {
if (__DEV__) {
// 省略其他
} else {
console.error(err)
}
}
當編譯成 production 環境後,__DEV__
分支的程式碼不會被打包進去,從而優化包的體積。
四、總結
到上面一部分,我們就差不多搞清楚 Vue3 中全域性異常處理的核心邏輯了。我們在開發自己的錯誤處理方法時,也可以考慮這幾個核心點:
- 支援同步和非同步的異常處理;
- 設定業務錯誤碼、業務錯誤資訊;
- 支援自定義錯誤處理方法;
- 支援開發環境錯誤提示;
- 支援 Tree Shaking。
這幾點在你設計外掛的時候,都可以考慮進去的~