Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to access MongoDB in nodejs

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

It is believed that many inexperienced people have no idea about how to access MongoDB in nodejs. Therefore, this article summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.

On localhost:27017 's server, create a database table called person under the database admin, and insert two records:

The image above shows two successfully inserted records viewed with MongoDB Compass.

Let's read these two records with nodejs.

First execute npm install mongodb on the command line

Then create a new JavaScript file and copy the following:

Notice the dbo.collection ("person") in line 12. Find ({}) .toArray, which means to read all records in the table person.

Var MongoClient = require ('mongodb'). MongoClient;var url = "mongodb://localhost:27017"; MongoClient.connect (url, function (err, db) {if (err) {console.log (err); throw err;} console.log ("Jerry DB connection established!"); var dbo = db.db ("admin"); dbo.collection ("person"). Find ({}) .toArray (function (err, result) {if (err) throw err; console.log (result); db.close ();}); db.close ();})

If I only want to read the record whose name is Jerry, I just need to pass the where condition into the method find:

It can be observed from the debugger that it has been read back in the desired way:

After reading the above, have you mastered how to access MongoDB in nodejs? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report