我使用mongodb node.js驱动程序。我的问题是这样的:

   var query = {
        $and: [{
            "custom_date": {
                "$gte": minDateValue,
                "$lt": maxDateValue
            }
        }, {"doc_name": {"$in": file_type}}, {"sample_type": {"$in": sample_type}}, {"mission": {"$in": mission}}, {"snow_thickness": {"$in": snow_thickness}},{
            "depth_m": {
                "$gte": minDepthOut,
                "$lt": maxDepthOut
                // Or equal to "NA"
            }
        }]
    };

一切都很好,但是我想在景深中加上一个$in或$or,所以这部分的查询将是“$gte”:mindepthout,“$lt”:maxdepthout或等于“na”例如。
我的意思是深度必须在指定范围内或等于“na”
谢谢你的帮助

最佳答案

您可以使用$or查询运算符

{
  "$and": [
    { "custom_date": { "$gte": minDateValue, "$lt": maxDateValue }},
    { "doc_name": { "$in": file_type } },
    { "sample_type": { "$in": sample_type } },
    { "mission": { "$in": mission } },
    { "snow_thickness": { "$in": snow_thickness } },
    { "$or": [
      { "depth_m": {
        "$gte": minDepthOut,
        "$lt": maxDepthOut
      }},
      { "depth_m": "NA" }
    }]
  ]
}

关于javascript - node.js中的Mongo在$ in或类似内容中添加$ gte/$ lt,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53552990/

10-09 21:46