await busboy:具有asyncawait支持的Busboy多部分解析器 源码
等待服务生 具有async/await和 / yield支持的多部分解析器。 从分叉并更新为支持async / await 例 const Koa = require ( 'koa' ) const app = new Koa ( ) const parse = require ( 'await-busboy' ) app . use ( async ( ctx , next ) => { // the body isn't multipart, we can't parse it if ( ! ctx . request . is ( 'multipart/*' ) ) retu
用户评论