0

有没有办法获得给定参数的特定字段功能?这个想法是返回包含在 POST 变量中的字段。

我知道我必须使用投影,但投影中没有 $in 运算符。

我想要类似的东西:

db.getCollection("130637B1").find({$and:[{'node_id':1}, {'ctype': 'cpu'}]}, {'components.sensors.name': {$in: {'components.sensors.name':[request.POST]}}})

任何想法 ?

4

1 回答 1

1

没有用于预测的 $in 运算符,但这并不意味着您不能这样做。例如,以下查询可以正常工作:

> db.so.drop();
true
> db.so.insert( { node_id: 42, ctype: 'cpu', components: { sensors: { name: 'foo', 'id' : '42bar' }, temp: 78.5 } } );
> db.so.find( {}, { ctype: 1, 'components.sensors.name' : 1 } );
{ "_id" : ObjectId("51dead724efd2a480aa6e6b1"), "ctype" : "cpu", "components" : { "sensors" : { "name" : "foo" } } }

我不确定您的 request.POST 包含什么,所以我无法给出更量身定制的答案。

于 2013-07-11T13:06:41.770 回答