标签: mongodb upsert
当增加一个不存在的字段(大写)时会发生什么?...
db.collection.findAndModify({query:{id:"id_in_param"}, update:{$inc:{score:1}}, upsert:true })
答案 0 :(得分:1)
document说:
如果该字段不存在,则$ inc创建该字段并将该字段设置为指定值。
在您的情况下,添加了新字段score: 1
score: 1