有没有一种更简单的方法可以只用一行(在命令行中)更新 Mongodb 集合?
现在,我在命令行中执行此操作:
var obj = db.mycollect.find({id="231412"});
obj.abc = 'new value';
obj.save();
3行代码..
有没有更简单的方法来执行此操作?
e.g. db.mycollect.find({id=12345}).save({abc:'new value'});
right now, i do this in command line:
var obj = db.mycollect.find({id="231412"});
obj.abc = 'new value';
obj.save();
3 lines of code..
is there a simpler way to do this?
e.g. db.mycollect.find({id=12345}).save({abc:'new value'});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不仅是一行,而且是原子的。使用您的解决方案,如果有人在您阅读文档后但在存储文档之前更新文档,则修改将丢失。
This is not only one line but also atomic. With your solution if somebody updates the document after you've read it but before storing it that modification will be lost.