如何在mongo和尚中使用$ in

时间:2015-11-28 15:54:45

标签: node.js mongodb monk

和尚的mongo的平等代码是什么?

use challenger_documents
db.question.find({_id: {$in: [ObjectId("56587ad1c30ea73eb22546f0"), ObjectId("5659779b5eb5a70f35db8125")]}})

例如,我试过这个,但它返回[]:

var mongodb = require('mongodb');
var monk = require('monk');
var db = monk('localhost:27017/challenger_documents');
question = db.get("question")
question.find({_id:{$in:["5659cba1ef72b7ef523206c5"]}},{},function(e,d){console.log(d)})

1 个答案:

答案 0 :(得分:0)

您需要将_id字符串转换为ObjectId

var mongodb = require('mongodb'),
    monk = require('monk'),
    db = monk('localhost:27017/challenger_documents'),
    ObjectId = mongodb.ObjectID,
    question = db.get("question");

question.find({_id: { $in: [ ObjectId("5659cba1ef72b7ef523206c5") ] } },{},function(e,d){ console.log(d) });