表达承诺 一个中间件,用于轻松呈现异步查询。 案例 1.以前 app . get ( '/users/:userId' , function ( req , res ) { User . find ( req . params . userId ) . then ( function ( user ) { Project . getMemo ( req . params . userId ) . then ( function ( memo ) { res . json ( { user : user ,