共计 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 网 – 提供最优质的资源集合!
正文完