Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用 mongodb 存储这样的对象:
{ field: 'example', attr: { tmp : 'test', tmp1 : 'test1' } };
现在我想搜索具有该属性的条目field:'example'并向其attr对象添加一个字段。我怎么能在 mongojs 中做到这一点?
field:'example'
attr
您可以tmp2:'test2'按如下方式将值添加到集合中。
tmp2:'test2'
db.myObject.update({field:'example'},{$set:{'attr.tmp2':'test2'}})