文件名称:p-wait-all:“ Promise.all”,但即使其中一个被拒绝,它也会等待所有的诺言兑现
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-01 18:11:14
promises promise async-functions await async-await
p等待所有 Promise.all ,但是即使其中一个被拒绝,它Promise.all等待所有的诺言兑现。 安装 使用npm: npm install --save p-wait-all 用法 var waitAll = require ( 'p-wait-all' ) var settled = false var result = waitAll ( [ Promise . reject ( new Error ( 'operation failed' ) ) , delay ( 200 ) . then ( function ( ) { settled = true } ) ] ) result . catch ( function ( err ) { // rejected after 200ms; // settled === true } ) 将其与Promi
【文件预览】:
p-wait-all-master
----.travis.yml(82B)
----index.js(878B)
----test.js(1KB)
----package.json(413B)
----readme.md(2KB)
----.github()
--------dependabot.yml(143B)
----LICENSE(1KB)
----.gitignore(13B)