Nodejs使用express連接數(shù)據(jù)庫mongoose的示例
前面需要準(zhǔn)備的內(nèi)容可看前面的文章:
連接 mongoose數(shù)據(jù)庫需要使用 Node.js 的 mongoose驅(qū)動程序。在 Express 應(yīng)用程序中使用 mongoose驅(qū)動程序時,需要執(zhí)行以下步驟
先創(chuàng)建一個js文檔
db.js文檔

安裝 MongoDB 驅(qū)動程序:
在你的項目目錄下使用 npm 或 yarn 安裝 mongoose驅(qū)動程序。
npm install mongoose

引入 MongoDB 模塊:
在 Express 應(yīng)用程序的文件中引入 MongoDB 模塊。
const mongodb = require('mongoose');

設(shè)置數(shù)據(jù)庫連接:
創(chuàng)建一個 mongoose客戶端,并通過客戶端連接到 mongoose數(shù)據(jù)庫。
const mongoose = require('mongoose');
// mongoose連接字符串,包括數(shù)據(jù)庫地址和名稱
mongoose.connect('mongodb://localhost:27017/mydatabase')
.then(() => {
console.log('Connected to the database');
})
.catch((err) => {
console.error('Failed to connect to the database:', err);
});

在上面的代碼中,uri 變量包含了 mongoose數(shù)據(jù)庫的連接字符串,其中包括數(shù)據(jù)庫地址和名稱。然后,創(chuàng)建一個新的 mongoose 實例,并通過 connect() 方法連接到數(shù)據(jù)庫。在連接成功后,可以執(zhí)行數(shù)據(jù)庫操作,例如查詢、插入、更新或刪除文檔。
新建一個表試試
const userValue =new mongoose.Schema({
name: String,
age: Number,
email: String,
password: String,
phone: String,
address: String,
gender: String,
dob: Date,
createdAt: { type: Date, default: Date.now },
updatedAt: { type: Date, default: Date.now }
});
const User = mongoose.model('User', userValue);
在上面的代碼中,先聲明一個表的格式。使用new mongoose的Schema函數(shù),內(nèi)容為需要保存的字段。

再使用module.exports將表傳出去:
const mongoose = require('mongoose');
// MongoDB 連接字符串,包括數(shù)據(jù)庫地址和名稱
mongoose.connect('mongodb://localhost:27017/mydatabase')
.then(() => {
console.log('Connected to the database');
})
.catch((err) => {
console.error('Failed to connect to the database:', err);
});
const userValue =new mongoose.Schema({
name: String,
age: Number,
email: String,
password: String,
phone: String,
address: String,
gender: String,
dob: Date,
createdAt: { type: Date, default: Date.now },
updatedAt: { type: Date, default: Date.now }
});
const User = mongoose.model('User', userValue);
module.exports = { User };

再使用index頁面接收一下:
const { User }= require('./db');

執(zhí)行數(shù)據(jù)庫操作:
在連接成功后,可以在回調(diào)函數(shù)中執(zhí)行數(shù)據(jù)庫操作。
// 在連接成功后執(zhí)行數(shù)據(jù)庫操作
client.connect(err => {
if (err) {
console.error('Failed to connect to the database:', err);
return;
}
console.log('Connected successfully to the database');
const db = client.db();
// 查詢所有文檔
db.collection('mycollection').find().toArray((err, docs) => {
if (err) {
console.error('Error fetching documents:', err);
return;
}
console.log('Documents:', docs);
});
// 插入文檔
db.collection('mycollection').insertOne({ name: 'John', age: 30 }, (err, result) => {
if (err) {
console.error('Error inserting document:', err);
return;
}
console.log('Document inserted:', result.insertedId);
});
// 更新文檔
db.collection('mycollection').updateOne({ name: 'John' }, { $set: { age: 35 } }, (err, result) => {
if (err) {
console.error('Error updating document:', err);
return;
}
console.log('Document updated:', result.modifiedCount);
});
// 刪除文檔
db.collection('mycollection').deleteOne({ name: 'John' }, (err, result) => {
if (err) {
console.error('Error deleting document:', err);
return;
}
console.log('Document deleted:', result.deletedCount);
});
});
在上面的代碼中,db.collection() 方法用于獲取集合對象,然后可以使用該集合對象執(zhí)行查詢、插入、更新或刪除操作。
關(guān)閉數(shù)據(jù)庫連接:
在完成數(shù)據(jù)庫操作后,記得關(guān)閉數(shù)據(jù)庫連接,釋放資源。
// 關(guān)閉數(shù)據(jù)庫連接 client.close();
這樣,你的 Express 應(yīng)用程序就可以連接到 mongoose數(shù)據(jù)庫并執(zhí)行數(shù)據(jù)庫操作了。記得根據(jù)你的實際需求修改連接字符串和數(shù)據(jù)庫操作。
到此這篇關(guān)于Nodejs使用express連接數(shù)據(jù)庫mongoose的示例的文章就介紹到這了,更多相關(guān)express連接mongoose內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
如何優(yōu)雅地在Node應(yīng)用中進(jìn)行錯誤異常處理
這篇文章主要介紹了如何優(yōu)雅地在Node應(yīng)用中進(jìn)行錯誤處理,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-11-11
Node發(fā)出HTTP POST請求的方法實例小結(jié)
這篇文章主要介紹了Node發(fā)出HTTP POST請求的方法,結(jié)合實例形式總結(jié)分析了三種常用的post請求操作方法,以及相關(guān)庫操作注意事項,需要的朋友可以參考下2023-05-05
Node koa服務(wù)器實現(xiàn)獲取客戶端ip
這篇文章主要為大家詳細(xì)介紹了Node koa服務(wù)器實現(xiàn)獲取客戶端ip的相關(guān)知識,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起了解下2025-02-02
module.exports和exports使用誤區(qū)案例分析
module.exports和exports使用誤區(qū),使用require()模塊時,得到的永遠(yuǎn)都是module.exports指向的對象2023-04-04
從零學(xué)習(xí)node.js之express入門(六)
相信大家都知道Express是一個簡潔而靈活的 node.js Web應(yīng)用框架, 提供了一系列強大特性幫助你創(chuàng)建各種 Web 應(yīng)用,和豐富的 HTTP 工具。下面這篇文章主要介紹了node.js中express的入門知識,需要的朋友可以參考下。2017-02-02
Node.js調(diào)用java之node-java問題
這篇文章主要介紹了Node.js調(diào)用java之node-java問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2023-10-10

