I have a object like this

var obj = {"$match":{"name.first":"aa"}}

In nodejs, how can I search for $ pattern inside an object. Any help on this will be really helpful.

Thanks.

有帮助吗?

解决方案

var text = JSON.stringify(obj); var n=text.match(/\$/g);

其他提示

Short version? you can't, long version? you have to write your own function to do it.\

a very simple implementation :

var searchObj = function(obj, key, value) {
    if(obj[key] === value) return obj;
    for(var k in obj) {
        var v = obj[k];
        if(obj.hasOwnProperty(k) && typeof v === 'object'){
            if(v[key] === value) return v;
        }
    }
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top