我有以下代码:
Films.findAll({
include: [{
model: Genres,
attributes: ['slug'],
where: {
[Op.or]: req.body.genres
},
through: {
attributes: []
}
}, ],
raw: false
}).then(res => {
console.log(res.length)
resp.send(res)
})
我真的希望它即使阵列为空也能打印所有结果。
有人可以帮助我吗?