欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-07-05 20:22:22
$type操作符 检测类型 种类 代号 别名 double 1 “double” string 2 “string” object 3 “object” a...

$type操作符

检测类型

种类 代号 别名

double 1 “double”
string 2 “string”
object 3 “object”
array 4 “array”
binary data 5 “bindata”
undefined 6 “undefined” deprecated.
objectid 7 “objectid”
boolean 8 “bool”
date 9 “date”
null 10 “null”
regular expression 11 “regex”
dbpointer 12 “dbpointer”
javascript 13 “javascript”
symbol 14 “symbol”
javascript (with scope) 15 “javascriptwithscope”
32-bit integer 16 “int”
timestamp 17 “timestamp”
64-bit integer 18 “long”
min key -1 “minkey”
max key 127 “maxkey

db.article.find({data:{$type:2}) //寻找data字段为string的文档

foreach函数

对查询结果集合中每个文档使用js函数

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进行数据类型转换就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。