Mongodb 利用mongoshell进行数据类型转换的实现方法

52次阅读
没有评论

共计 609 个字符,预计需要花费 2 分钟才能阅读完成。

cursor.forEach(function)
Iterates the cursor to apply a JavaScript function to each document from the cursor.

使用例子

将 data.tagList 数组中的 string 转换为 int32,x 代表迭代传入的文档

db.article.find({"data.tagList.0":{$type:2}}).forEach(function(x){
var i=0;
var length=x.data.tagList.length; 
for(i=0;i length;i++){if(typeof x.data.tagList[i] === 'string') {x.data.tagList[i]=NumberInt(x.data.tagList[i]); 
db.article.save(x)})

note

1. 使用 js 新特性要注意,比如我的是不支持 for(var a of b) 的,还有注意 string 是小写啊

2. 可以使用 print 输出

db.users.find().forEach( function(myDoc) {print( "user:" + myDoc.name); } );

以上这篇 Mongodb 利用 mongoshell 进行数据类型转换就是丸趣 TV 小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持丸趣 TV。

向 AI 问一下细节

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-18发表,共计609字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)