gpt4 book ai didi

node.js - 如何使用单个等待在 sequelize 中一次运行多个选择查询

转载 作者:行者123 更新时间:2023-12-03 22:17:55 26 4
gpt4 key购买 nike

必须同时运行两个代码。不想等待然后触发下一个查询,而是等待两个查询执行完成。

products = await Product.findAll()
.then(data => {
return data;
})
.catch(error => {
//
});

variationProducts = await VariationProduct.findAll()
.then(data => {
return data;
})
.catch(error => {
//
});

最佳答案

你可以选择

const [ productsPromise, variationProductsPromise ] = await Promise.all([Product.findAll(), VariationProduct.findAll()]);

OR

const [ productsPromise, variationProductsPromise ] = await { Product.findAll(), VariationProduct.findAll()}

关于node.js - 如何使用单个等待在 sequelize 中一次运行多个选择查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60277134/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com