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

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

    You can also destructure your ObjectId and MongoClient to optimize your code and make it more readable.

    const { MongoClient, ObjectId } = require('mongodb');
    

提交回复
热议问题