search

Home  >  Q&A  >  body text

mongodb - 为什么在shell端和js代码执行结果不一样

查询语句如下:

db.collection.find({
    subject:{
        $in:[
            eval("/测试1/ig"), 
            eval("/测试2/ig")
        ]
    }
})

在shell端执行可以搜索出subject字段中包含测试1测试2的文档
但是放到js代码(node.js+mongoose)中就搜索不出来结果了,这是为什么呢?
js代码如下:

var condition = {subject: {$in: [eval('/测试1/ig'),eval('/测试2/ig')]}};
collection.find(condition, function(err, docs){
    //to do something...
});
天蓬老师天蓬老师2761 days ago619

reply all(1)I'll reply

  • PHPz

    PHPz2017-04-28 09:05:39

    If you post your collection name and Schema, it may be a problem with the definition of the schema

    reply
    0
  • Cancelreply