如您所见,我已经创建了一个异步方法列表。在for循环中的异步方法内部,我通过mqtt客户端将一些消息推送到代理中:
const example2 = async () => {
await push();
await push();
};
const push = async () => {
for (var i = 0; i < 2000; i++) {
client.publish(topic, message, pushOptions);
}
}
var syncList = [];
const startpushing = () => {
if (client.connected & client2.connected & client3.connected & client4.connected & client5.connected) {
console.log(`start pushing`);
syncList.push(
example2(), example3(), example4(),...);
Promise.all(syncList)
.then(() => {
console.log(topic_finished);
client5.publish(topic_finished, "true", pushOptions);
}).catch(err => {
console.log(err);
});
}
}
我想在执行所有异步方法后将新主题推送到代理,以便使用Promise.all
。
但是我不知道为什么console.log(topic_finished)
在任务列表尚未完成时很快就执行了?
我认为是因为我没有通过 async 方法返回任何内容吗?对?但是我应该返回什么?
答案 0 :(得分:-1)
您应该在不调用fns的情况下推送fns
syncList.push(example2, example2, ...anotherAsyncFns)
然后在其中添加参数
Promise.all(syncList).then((results) => console.log(results));