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

后端 未结 5 1773
野趣味
野趣味 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:20

    You need to require the ObjectId function before using it:

    var ObjectId = require('mongodb').ObjectID;
    

提交回复
热议问题