我正在使用该async.eachLimit
函数来一次控制最大操作数。
const { eachLimit } = require("async");
function myFunction() {
return new Promise(async (resolve, reject) => {
eachLimit((await getAsyncArray), 500, (item, callback) => {
// do other things that use native promises.
}, (error) => {
if (error) return reject(error);
// resolve here passing the next value.
});
});
}
如您所见,myFunction
由于无法访问eachLimit
函数的第二个回调中的值,因此无法将函数声明为异步。