Promise API Recap new Promise(..) Constructor Promise.resolve(..) and Promise.reject(..) then(..) and catch(..) Promise.all([ .. ]) and Promise.race([ .. ]) Promise API Rec...
Promise化 API 原生小程序异步 API 异步 API Promise 化 Promise化 API 原生小程序异步 API 目前小程序很多 API 都是异步的,但对于异步调用结果,依旧只能通过传入 callback 参数方式来执行,不支持返回 Promise 方式 这些异步 API 的接口签名参数都有如下共同特征,因此基于这个...