搜尋

首頁  >  問答  >  主體

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 天前601

全部回覆(0)我來回復

無回覆
  • 取消回覆