我想删除多个id,将其作为数组输入,但它不起作用,为什么?那是我的准则
name: 'Test 2: hard delete test',
condition: { id:[5,6,7]}
},
];
const hardDeleteTestResults = [];
for (const test of hardDeleteTests) {
try {
// const user = await User.destroy();
const user = await User.findByPk(
test.condition.id);
const deleteUser = await User.destroy({
where: test.condition,
force:true
});
const hardDeletedUser = await User.findOne({
where: test.condition,
}); ```
1条答案
按热度按时间t40tm48m1#
我想这可以解决你的问题:
你可以阅读文档中关于查询和在where子句中使用运算符的内容。
今后,请确保: