我希望使用Sequelize从postgres数据库中提取项目,但只返回id与给定数组中的任何项目不相等的项目.
在Sequelize documentation中,运算符$ne表示不相等,$in表示返回具有与给定数组匹配的值的属性的项目,但它看起来不像是有一个运算符来组合这两个.
例如,如果我在数据库中使用id [1,2,3,4,5,6],我想通过比较另一个数组(即[2,4])过滤那些项目,这样它就会返回[1,6].在我的例子中,我也随机化了退货订单和限价,但这可以忽略不计.
function quizQuestions(req,res) { const query = { limit: 10,order: [ [sequelize.fn('RANDOM')] ],where: { id: { $ne: [1,3] } // This does not work } }; Question.findAll(query) .then(results => res.status(200).json(map(results,r => r.dataValues))) .catch(err => res.status(500).json(err)); }
编辑:使用@piotrbienias回答,我的查询如下所示:
const query = { limit: 10,where: { id: { $notIn: [1,3] } } };