或,当Where有空数组时结果为空

时间:2018-11-10 09:33:58

标签: javascript mysql sequelize.js

我有以下代码:

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)
})

我真的希望它即使阵列为空也能打印所有结果。

有人可以帮助我吗?

0 个答案:

没有答案