为了账号安全,请及时绑定邮箱和手机立即绑定

Mongoose 允许对不存在的字段进行排序。如何仅限制现有字段?

Mongoose 允许对不存在的字段进行排序。如何仅限制现有字段?

蛊毒传说 2022-01-13 15:06:52
下面的查询返回数据,但文档(db)中不存在hgf字段。如何限制仅对现有字段进行排序?files.find({ account_id: 1, deleted_at: { '$eq': null },    status: { '$ne': 3 }}, { skip: 0, limit: 100, sort: { hgf: -1 }, projection: {} });
查看完整描述

1 回答

?
波斯汪

TA贡献1811条经验 获得超4个赞

这应该有效:


files.find({

  account_id: 1,

  deleted_at: { '$eq': null }, 

  status: { '$ne': 3 },

  hgf: { $exists: true, $ne: null } // Check it exists and not null

}, { skip: 0, limit: 100, sort: { hgf: -1 }, projection: {} });


查看完整回答
反对 回复 2022-01-13
  • 1 回答
  • 0 关注
  • 133 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信