mongo的关键字学习(一)
$exists关键字
mongo中查找存在comments字段的文档记录
db.app_doc.find({"comments":{$exists:true}})
$unset关键字
Mongo中删除comments字段,使用$unset关键字
db.app_doc.update({"comments":{$exists:true}},{$unset:{"comments":""}},{multi:true})
$addToSet关键字
Mongo中的$addToSet操作符
$addToSet操作符只有在值没有存在于数组中时才会向数组中添加一个值。如果值已经存在于数组中, $addToSet将返回,不会修改数组。考虑以下示例:
db.collection.update( { field: value }, { $addToSet: { field: value1 } } );
在这里, $addToSet只有在value1不为数组成员的时候才会添加 value1 到数组中的field。
注意:$addToSet仅能保证集合中项唯一并且不能保证集合中元素的顺序。
使用JsonCpp遍历json的一个节点的所有子节点
typedef Json::Value JsonValue;
void print(JsonValue v)
{
JsonValue::Members mem = v.getMemberNames();
for (JsonValue::Members::iterator iter = mem.begin(); iter != mem.end(); iter++)
{
cout<<*iter<<"\t: ";
if (v[*iter].type() == Json::objectValue)
{
cout<<endl;
print(v[*iter]);
}
else if (v[*iter].type() == Json::arrayValue)
{
cout<<endl;
int cnt = v[*iter].size();
for (int i = 0; i < cnt; i++)
{
print(v[*iter][i]);
}
}
else if (v[*iter].type() == Json::stringValue)
{
cout<<v[*iter].asString()<<endl;
}
else if (v[*iter].type() == Json::realValue)
{
cout<<v[*iter].asDouble()<<endl;
}
else if (v[*iter].type() == Json::uintValue)
{
cout<<v[*iter].asUInt()<<endl;
}
else
{
cout<<v[*iter].asInt()<<endl;
}
}
return;
}