标签:文档 bsp ret 字符串 HERE javascrip img sci 是什么
db.getCollection(‘ddzinttest‘).find({"age":{$gt:"3"}})
那么这种问题该怎么解决呢。Mongo中有一种**$where**查询,这种查询是可以解决这样需求,
db.getCollection(‘ddzinttest‘).find({"$where":"this.age>3"})
db.getCollection(‘ddzinttest‘).find({$where:function(){return this.age>3}})
db.getCollection(‘ddzinttest‘).find({$where:function(){ for(var i =0;i<this.Child.length;i++){ var currentChild=this.Child[i]; if(currentChild.key===‘123‘&¤tChild.value>‘111‘){ return true; } } return false; }})
查询子文档数组Child中key等于123并且value大于111的数据
当然,这种复制的就不能使用字符串表达式了。
标签:文档 bsp ret 字符串 HERE javascrip img sci 是什么
原文地址:https://www.cnblogs.com/yan7/p/9371205.html