MongoDB通过forEach循环实现Replace
【摘要】 MongoDB没有提供replace操作,需要通过forEach循环实现, 支持JavaScript语法
forEach循环实现Replace操作实例
1、插入一条数据
db.getCollection('blog').insert({'title': 'oldTitle'})
2、查看数据
db.getCollection('blog').find({})
/*...
MongoDB没有提供replace操作,需要通过forEach循环实现, 支持JavaScript语法
forEach循环实现Replace操作实例
1、插入一条数据
db.getCollection('blog').insert({'title': 'oldTitle'})
2、查看数据
db.getCollection('blog').find({})
/* 1 */
{ "_id" : ObjectId("5dfb5a491699d4334f25b354"), "title" : "oldTitle"
}
3、使用save方式保存数据 old->new
db.getCollection("blog").find({ _id: ObjectId("5dfb5a491699d4334f25b354")
}).forEach(function(item) { item.title = item.title.replace('old', "new"); db.getCollection("blog").save(item);
});
4、查看替换后的数据
db.getCollection('blog').find({})
/* 1 */
{ "_id" : ObjectId("5dfb5a491699d4334f25b354"), "title" : "newTitle"
}
5、使用update方式更新 new->old
db.getCollection("blog").find({ _id: ObjectId("5dfb5a491699d4334f25b354")
}).forEach(function(item) { title = item.title; title = title.replace('new', "old"); db.getCollection("blog").update({_id:item._id},{$set:{title: title}});
});
6、查看数据,已经修改了
db.getCollection('blog').find({})
/* 1 */
{ "_id" : ObjectId("5dfb5a491699d4334f25b354"), "title" : "oldTitle"
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
总结
使用forEach + save方式实现replace,代码较为简洁,出错概率较低
db.getCollection("blog").find({ _id: ObjectId("5dfb5a491699d4334f25b354")
}).forEach(function(item) { item.title = item.title.replace('old', "new"); db.getCollection("blog").save(item);
});
- 1
- 2
- 3
- 4
- 5
- 6
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/103620182
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)