• Mongodb 利用mongoshell进行数据类型转换


    $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 ); } );
    
  • 相关阅读:
    python pickle模块
    python struct模块
    python threading模块
    python queue模块
    python3 requests模块 基本操作
    python json模块
    C语言回调函数
    工厂方法模式
    git fetch, git pull 以及 FETCH_HEAD
    git删除远程文件夹或文件的方法
  • 原文地址:https://www.cnblogs.com/jcuan/p/5863607.html
Copyright © 2020-2023  润新知