Correct way to search for MongoDB entries by '_id' in Node

后端 未结 5 1777
野趣味
野趣味 2021-02-03 17:35

I\'m using MongoDb (as part of MongoJS) in Node. Here is the documentation for MongoJS.

I\'m trying to do a call within Node based

5条回答
  •  终归单人心
    2021-02-03 18:24

    Here's another way to utilise objectId when using mongoose.

    // at the top of the file
    const Mongoose = require('mongoose')
    const ObjectId = Mongoose.Types.ObjectId;
    
    // when using mongo to collect data
    Mongoose.model('users', userSchema).findOne({ _id: 
        ObjectId('xyz') }, function (err, user) {
            console.log(user)
            return handle(req, res)
        })
    })
    

提交回复
热议问题