recherche

Maison  >  Questions et réponses  >  le corps du texte

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 Il y a quelques jours620

répondre à tous(1)je répondrai

  • PHPz

    PHPz2017-04-28 09:05:39

    Si vous publiez le nom de votre collection et votre schéma, il se peut qu'il y ait un problème avec la définition du schéma

    répondre
    0
  • Annulerrépondre