码迷,mamicode.com
首页 > 数据库 > 详细

mongodb use where and custom function to query mongodb存储过程

时间:2015-04-22 17:47:53      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

function name regexObjSubObjKey

function code 

function(proto,value) {
    var match=false; 
    var reg = new RegExp(‘.*‘+value);
        print(JSON.stringify(this.obj));
    print(this[‘arr_‘+proto]);
    for(var key in this.obj[‘arr_‘+proto]){
          print(key);
        if(key!=‘count‘&&key!=‘isgame‘){
             match = reg.test(key);
            if(match){
                return true;
            }
        }
    }
    return false;
}

query demo

精简

db.test.find({$where:"regexObjSubObjKey(‘qq‘,‘1234567‘)"})

标准

db.test.find({$and:[{arr_qq:{$exists:true}},{$where:"regexObjSubObjKey(‘qq‘,‘1234567‘)"}]})

 

数据内容

{
    "_id": "7654321",
    "arr_qq": {
        "1234567": {
            "count": 8
        },
        "abcdefg": {
            "count": 8
        },
        "count": 16
    }
}

mongodb use where and custom function to query mongodb存储过程

标签:

原文地址:http://www.cnblogs.com/zihunqingxin/p/4447964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!