文件名称:express-addons:express.js的小插件
文件大小:8KB
文件格式:ZIP
更新时间:2024-06-07 15:52:17
JavaScript
快件 介绍 这是一个用于在express.js 4上做一些附加组件的小包装。 异步路由 允许您使用异步路由而不是回调。 这是一个例子。 route . get ( '/' , async ( req , res ) => { if ( ! req . notAuthed ) throw new Error ( 'Not authorized.' ) ; await something ( ) ; return 'This is my response.' ; } ) ; 这很简单,而且是前进的道路。 请注意, next参数不会暴露给异步路由。 非异步路由 异步路由 next() 退出范围 next(new Error()) throw new Error()
【文件预览】:
express-addons-master
----.gitignore(13B)
----package.json(768B)
----package-lock.json(4KB)
----LICENSE(1KB)
----index.js(532B)
----.eslintrc.js(754B)
----README.md(3KB)
----lib()
--------catchall.js(1KB)
--------promisestart.js(431B)
--------mount.js(2KB)
--------asyncroutes.js(2KB)