收藏
回答

这个官方文档是否有错

https://developers.weixin.qq.com/minigame/dev/wxcloud/reference-sdk-api/database/command/aggregate/AggregateCommand.or.html

示例代码

假设集合 price 有如下记录:

{ "_id": 1, "min": 10, "max": 100 }
{ "_id": 2, "min": 60, "max": 80 }
{ "_id": 3, "min": 30, "max": 50 }

求 min 小于 40 且 max 大于 60 的记录。

const $ = db.command.aggregate
db.collection('price').aggregate()
  .project({
    fullfilled: $.or([$.lt(['$min', 30]), $.gt(['$max', 60])])
  })
  .end()

返回结果如下:

{ "_id": 1, "fullfilled": true }
{ "_id": 2, "fullfilled": false }
{ "_id": 3, "fullfilled": true }

文字描述小于40,但实际是30. 然后第三个记录应该是false吧?读不懂

or不是任意一个表达式返回true 它就是true吗?感觉变成了and的关系了

回答关注问题邀请回答
收藏

1 个回答

  • Forever
    Forever
    2021-04-01

    官方文档写错了

    2021-04-01
    有用
    回复
登录 后发表内容
问题标签