搜索

首页  >  问答  >  正文

MongoDB根据id查询问题

文章Model:

 Post.getOneById = function(_id, callback) {
       ...
      db.collection('posts', function(err, collection){
           collection.findOne({"_id": new ObjectID(_id)},function(err, doc){
                     ....
               }
       }
 }

路由:

app.get('/p/:_id', function(req, res){

   Post.getOneById( req.params._id, function(err, post){
         ...
   }
}

好像这句有问题 {"_id": new ObjectID(_id)}

ringa_leeringa_lee2813 天前602

全部回复(0)我来回复

暂无回复
  • 取消回复