今天在看一个大佬的github项目,他在写登录函数的时候是这样写的:
async login(req, res, next){ const form = new formidable.IncomingForm(); form.parse(req, async (err, fields, files) => { /...some code }) }
他这里是两个async,这里为啥写两个啊,只写外面一个总的不行吗?
async 是函数的一种类型,每一个都要写,不写就不是。
并不是说 async 函数里定义的函数就是 async 函数。
2.1m questions
2.1m answers
60 comments
57.0k users