您好,登錄后才能下訂單哦!
本篇文章為大家展示了使用node怎么實現錯誤處理,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
node項目中的錯誤處理
node中Error對象的使用
使用captureStackTrace方法加入自帶的錯誤信息
// Error對象自帶的屬性 Error.captureStackTrace // 如何使用captureStackTrace var obj = { message: 'something is wrong' } Error.captureStackTrace(obj) throw obj // 此時會拋出obj對象的message內信息
使用try catch捕獲錯誤
直接把代碼寫在try catch中即可捕獲錯誤信息
try{ throw new Error('oh no') }catch(e){ console.log(e) }
在異步代碼中,直接try catch是無法捕獲錯誤信息的,可以使用如下方法
function foo(params, cb){ const error = new Error('something is wrong') if(error) cb(error) }
以上使用callback方式來做錯誤處理比較容易麻煩,容易出錯,現在node已經支持async await所以盡量使用它們準沒錯
async function foo(){ try{ await bar() }catch(e){ console.log(e) } } async function bar(){ throw new Error('async function got wrong) } foo()
基本錯誤類型
在項目會有多個地方對錯誤信息進行處理,所以先寫一個基本錯誤類型,方便使用
// 基本錯誤類型 class HttpBaseError extends Error { constructor(httpStatusCode, httpMsg, errCode, msg) { super(`HTTP ERROR: ${msg}`); this.httpStatusCode = httpStatusCode; this.httpMsg = httpMsg; this.errCode = errCode; } } try { // 直接拋出定義好的錯誤即可 throw new HttpBaseError(404, '資源不存在', 10000, 'resouse is not found'); } catch (e) { console.log(e.message); console.log(e.httpStatusCode); console.log(e.httpMsg); console.log(e.errCode); }
特定錯誤類型
除了基本類型,不同情況下會有不同錯誤信息,需要用一個特定的錯誤類型來處理特定的錯誤信息
// 一個參數錯誤類型 const ERROR_CODE = 40000 // 錯誤碼 class HttpRequestParamError extends HttpBaseError { constructor(paramName, desc, msg) { super(200, desc, ERROR_CODE, `${paramName} wrong: ${msg}`) } }
這樣,在參數錯誤的地方就能非常方便的調用這個錯誤類型來返回錯誤
拋錯的邏輯
錯誤處理中,model,controller中的錯誤,有些是不能直接返回給用戶的,應該只返回給model或controller的調用者。
使用錯誤處理
正常接口,controller,model的錯誤,使用設定好的錯誤類型進行處理,例如前面寫的HttpRequestParamError,在所有所有路由的最后,需要使用一個error handler來對所有的錯誤進行集中處理
// error handler function handler(options) { return function (err, req, res, next) { if (err instanceof HttpRequestParamError) { // 這里對不同的錯誤做不同的處理 console.log('http request error') res.statusCode = err.httpStatusCode res.json({ code: err.errCode, msg: err.httpMsg }) } else { // 設定之外的錯誤,把管理權向外移交 next(err) } } }
除了可預知的錯誤,還有未知的類型的錯誤,此時需要一個unknow error handler進行剩余錯誤的處理
function unKnowErrorHandler(options) { return function (err, req, res, next) { console.log(err) res.json({ code: 99999, msg: 'unKnow error' }) } }
node中的日志
平時使用console來debug是沒有問題的,但是在線上環境,我們并不能有效的看到console,使用日志系統可以更好的方便線上的debug,記錄信息等
winston的使用
winston是node中常用的日志插件
const winston = require('winston') const logger = winston.createLogger({ transports: [ new winston.transports.Console(), new winston.transports.File({ name: 'info_logger', // log名稱 filename: 'logs/info.log', // 日志記錄文件地址 level: 'info' // 設置log的類型 }), // 第二個logger,記錄error級別的log new winston.transports.File({ name: 'error_logger', filename: 'logs/error.log', level: 'error' }) ] }); // error級別比info要高,error.log文件只會記錄error日志 logger.error('first error log with winston') // info文件內會記錄info級別的log和比info級別高的log,比如error logger.info('first info log with winston')
日志滾動(log rotation)
在產生大量數據的應用當中,日志的輸出是大量的,這是就需要對日志進行拆分處理,例如按照每天的頻率來分別記錄日志。
winston并不自帶log rotation,需要引入winston-daily-rotate-file庫
const { createLogger, format, transports } = require('winston'); const { combine, timestamp, label, prettyPrint } = format; require('winston-daily-rotate-file') var transport = new(transports.DailyRotateFile)({ filename: './logs/app-%DATE%.log', datePattern: 'YYYY-MM-DD-HH', maxSize: '20m', maxFiles: '14d', format: combine( label({ label: 'right meow!' }), timestamp(), prettyPrint() ), }); transport.on('rotate', function (oldFilename, newFilename) {}); var logger = createLogger({ transports: [ transport ] }); logger.info('Hello World!');
上述內容就是使用node怎么實現錯誤處理,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。