gpt4 book ai didi

javascript - Sequelize - 在 findAll 之后,使用单个查询删除

转载 作者:行者123 更新时间:2023-12-03 22:35:47 25 4
gpt4 key购买 nike

我有一个带有关联表的表。我正在使用 beforeDestroy 删除任何关联的记录。

Model.beforeDestroy(async (category: any) => {
const items = await Category.findAll({
where: {
category_id: category.id,
},
attributes: ['id'],
raw: true,
});

console.log(items); // [ { id: 2 }, { id: 3364 }, { id: 3365 } ]

items.map((item: any) => {
Category.destroy({ where: { id: item.id } });
});
});
}

我正在尝试使用单个 destroy 查询而不是映射来删除匹配的项目。

最佳答案

尝试:

Category.destroy({ where: { id:items.map(item=>item.id)} });

关于javascript - Sequelize - 在 findAll 之后,使用单个查询删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60859029/

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