-
异步错误处理中间件express-async-handler专为Express设计
资源介绍
简单的中间件,用于处理异步Express路由内的异常并将它们传递给您的Express错误处理程序。
安装:
npm install --save express-async-handler
或者
yarn add express-async-handler
用法:
const asyncHandler = require ( 'express-async-handler' )
express . get ( '/' , asyncHandler ( async ( req , res , next ) => {
const bar = await foo . findAll ( ) ;
res . send ( bar )
} ) )
没有表达异步处理程序
express . get ( '/' , ( req , res , next ) => {
foo .