In recent years, more and more developers have begun to choose to use Node.js for web development. Compared with languages such as PHP and Python, Node.js has more powerful asynchronous operations and high concurrency processing capabilities, allowing developers to build high-performance web applications more efficiently.
However, Node.js development is not easy for beginners. In this article, we will introduce how to use Node.js to perform CRUD operations. These operations are known as CRUD operations and are the core operations of any web application, so mastering them is crucial for beginners.
- Prerequisite knowledge
Before performing addition, deletion, modification and query operations, you need to prepare the Node.js operating environment and database. The database used in this article is MongoDB, which is a document database commonly used in Node.js web development.
You can download and install MongoDB through the official website, or use MongoDB through a cloud service provider (such as MongoDB Atlas or Amazon DocumentDB). This article will not introduce the installation and configuration of MongoDB in detail. Readers can find relevant information to learn by themselves.
- Connecting to the database
In Node.js, connecting to the MongoDB database requires the use of the officially provided MongoDB driver. First, we need to install the MongoDB driver, using the following command:
npm install mongodb --save
Then, we can connect to the MongoDB database through the following code. Note that the following example code assumes MongoDB is running on localhost. If you are using a remote MongoDB instance, you will need to replace localhost
with the IP address or hostname of the instance.
const MongoClient = require("mongodb").MongoClient; const url = "mongodb://localhost:27017/mydb"; MongoClient.connect(url, function (err, db) { if (err) throw err; console.log("数据库已连接!"); db.close(); });
In the above code, we use the MongoClient
object to connect to the MongoDB database and specify the connection URL. If the connection is successful, a prompt message is output, and then the database connection is closed.
- Inserting data
In MongoDB, data is stored in the form of documents. Each document is a JSON object that can contain various properties and values. To insert data into a collection, we can use the insertOne()
or insertMany()
method. The following is the sample code of the insertOne()
method:
const MongoClient = require("mongodb").MongoClient; const url = "mongodb://localhost:27017/mydb"; MongoClient.connect(url, function (err, db) { if (err) throw err; const dbo = db.db("mydb"); const myobj = { name: "菜鸟教程", url: "www.runoob.com" }; dbo.collection("sites").insertOne(myobj, function (err, res) { if (err) throw err; console.log("文档插入成功"); db.close(); }); });
In the above code, we have used the dbo.collection()
method to get the collection object and use insertOne()
method inserts a document into the collection. If the insertion is successful, a prompt message is output, and then the database connection is closed.
- Query data
In MongoDB, you can use the find()
method to query documents. find()
The method returns a cursor that contains all documents that meet the query conditions. The following is the sample code for the find()
method:
const MongoClient = require("mongodb").MongoClient; const url = "mongodb://localhost:27017/mydb"; MongoClient.connect(url, function (err, db) { if (err) throw err; const dbo = db.db("mydb"); dbo.collection("sites").find({}).toArray(function (err, result) { if (err) throw err; console.log(result); db.close(); }); });
In the above code, we have used the find()
method to query all the documents in the collection and Use the toArray()
method to convert query results into an array. If the query is successful, the query results are output, and then the database connection is closed.
If you only want to query documents that meet specific conditions, you can pass in a JSON object containing the query conditions in the find()
method, for example:
dbo.collection("sites").find({ name: "菜鸟教程" }).toArray(function (err, result) { // ... });
The above code will query the document named "Rookie Tutorial" and return all documents that meet the conditions.
- Update data
To update data in MongoDB, you can use the updateOne()
or updateMany()
method. The following is a sample code for the updateOne()
method:
const MongoClient = require("mongodb").MongoClient; const url = "mongodb://localhost:27017/mydb"; MongoClient.connect(url, function (err, db) { if (err) throw err; const dbo = db.db("mydb"); const myquery = { name: "菜鸟教程" }; const newvalues = { $set: { name: "Runoob" } }; dbo.collection("sites").updateOne(myquery, newvalues, function (err, res) { if (err) throw err; console.log("文档更新成功"); db.close(); }); });
In the above code, we have used the updateOne()
method to update a document in the collection. First, we use the myquery
object to specify the document to update, and then we use the newvalues
object to specify the new values. The $set
operator will modify existing fields or add new fields. If the update is successful, a prompt message is output, and then the database connection is closed. If you want to update multiple documents that match specific criteria, you can use the updateMany()
method.
- Deleting data
In MongoDB, you can use the deleteOne()
or deleteMany()
method to delete documents. The following is a sample code for the deleteOne()
method:
const MongoClient = require("mongodb").MongoClient; const url = "mongodb://localhost:27017/mydb"; MongoClient.connect(url, function (err, db) { if (err) throw err; const dbo = db.db("mydb"); const myquery = { name: "菜鸟教程" }; dbo.collection("sites").deleteOne(myquery, function (err, obj) { if (err) throw err; console.log("文档删除成功"); db.close(); }); });
In the above code, we have used the deleteOne()
method to delete a document in the collection. First, we specify the document to be deleted using the myquery
object. If the deletion is successful, a prompt message will be output, and then the database connection will be closed. If you want to delete multiple documents that match specific criteria, you can use the deleteMany()
method.
- Summary
This article introduces how to use Node.js to perform add, delete, modify and query operations on the MongoDB database, which is the so-called CRUD operation. In actual development, you need to master more basic knowledge of Node.js and MongoDB database management skills to complete more complex operations. I hope this article can be helpful to beginners.
The above is the detailed content of How to write add, delete, modify, check in nodejs. For more information, please follow other related articles on the PHP Chinese website!

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use
