nodejs操作mongodb的填刪改查模塊的制作及引入實(shí)例
安裝相關(guān)模塊
如果使用這個(gè)的話,你需要先自己安裝一下他需要的模塊,在根目錄輸入
npm install mongodb --save
進(jìn)行模塊安裝,安裝成功以后就可以進(jìn)行以下的步驟。
文件的引入
以下是我書寫的相關(guān)代碼,放到你可以引用的相關(guān)目錄,本人放到了express的根目錄
function Mongo(options) {
this.settings = {
url: 'mongodb://localhost:27017/jk',
MongoClient:require('mongodb').MongoClient,
assert:require('assert')
};
for(let i in options){
this.settings[i] = options[i];
}
this._run = function (fun) {
let that = this;
let settings = this.settings;
this.settings.MongoClient.connect(this.settings.url, function (err, db) {
settings.assert.equal(null, err);
console.log("Connected correctly to server");
fun(db, function () {
db.close();
});
});
};
this.insert = function (collectionName, data, func) {
//增加數(shù)據(jù)
let insertDocuments = function (db, callback) {
let collection = db.collection(collectionName);
collection.insertMany([
data
], function (err, result) {
if (!err) {
func(true);
} else {
func(false);
}
callback(result);
});
};
this._run(insertDocuments);
};
this.update = function (collectionName, updateData, data, func) {
//更新數(shù)據(jù)
let updateDocument = function (db, callback) {
let collection = db.collection(collectionName);
collection.updateOne(updateData
, {$set: data}, function (err, result) {
if (!err) {
func(true);
} else {
func(false);
}
callback(result);
});
};
this._run(updateDocument);
};
this.delete = function (collectionName, data, func) {
//刪除數(shù)據(jù)
let deleteDocument = function (db, callback) {
let collection = db.collection(collectionName);
collection.deleteOne(data, function (err, result) {
if (!err) {
func(true);
} else {
func(false);
}
callback(result);
});
};
this._run(deleteDocument);
};
this.find = function (collectionName, data, func) {
//查找數(shù)據(jù)
let findDocuments = function (db, callback) {
// Get the documents collection
let collection = db.collection(collectionName);
// Find some documents
collection.find(data).toArray(function (err, docs) {
if (!err) {
func(true,docs);
}
else {
func(false, err);
}
callback(docs);
});
};
this._run(findDocuments);
};
}
module.exports = Mongo;
我存入到了一個(gè)名字叫server.js的文件名內(nèi)
使用
我們在需要使用頁面先將模塊引入,比如我在路由文件index.js里面引入:
const Server = require("../server.js");
然后需要實(shí)例化對象,如下:
let server = new Server();
如果需要配置相關(guān)信息,可以在實(shí)例化的時(shí)候傳入一個(gè)對象配置,可以配置數(shù)據(jù)庫的地址:
let server = new Server({url:"mongodb://localhost:27017/mydb"});
里面封裝了四個(gè)方法,添刪改查,分別是
添加方法
server.insert(數(shù)據(jù)表名,需要插入的數(shù)據(jù)(鍵值對的對象),回調(diào)函數(shù));
更新方法
server.update(數(shù)據(jù)表名,查詢的數(shù)據(jù)(對象),更新的數(shù)據(jù)(對象),回調(diào)函數(shù));
刪除方法
server.delete(數(shù)據(jù)表名,查詢的數(shù)據(jù)(對象),回調(diào)函數(shù));
查找方法
server.find(數(shù)據(jù)表名,查詢的數(shù)據(jù)(對象),回調(diào)函數(shù));
回調(diào)函數(shù)都會返回兩個(gè)值,第一個(gè)布爾類型,是否處理成功,第二個(gè)值,查找返回查找到的個(gè)數(shù),別的都返回處理成功的個(gè)數(shù)(現(xiàn)在一次只處理一條)
使用案例
比如我需要在一個(gè)路由里面查找數(shù)據(jù),我就需要這樣:
server.find("users",{username:"username"},function (bool,data) {
if(bool){
console.log("查詢到數(shù)據(jù)為"+data.length+"條");
}
else{
console.log(data);
}
});
});
上面的代碼是查詢了users表里面username為username的字段的數(shù)據(jù),如果成功,后面data就會返回一個(gè)數(shù)組,如果出現(xiàn)錯(cuò)誤,就直接返回data錯(cuò)誤。
以上這篇nodejs操作mongodb的填刪改查模塊的制作及引入實(shí)例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
- NodeJS學(xué)習(xí)筆記之MongoDB模塊
- nodejs連接mongodb數(shù)據(jù)庫實(shí)現(xiàn)增刪改查
- nodejs中使用monk訪問mongodb
- 使用Nodejs連接mongodb數(shù)據(jù)庫的實(shí)現(xiàn)代碼
- 詳解nodejs操作mongodb數(shù)據(jù)庫封裝DB類
- NodeJS中的MongoDB快速入門詳細(xì)教程
- nodejs操作mongodb的增刪改查功能實(shí)例
- nodejs+mongodb aggregate級聯(lián)查詢操作示例
- nodejs實(shí)現(xiàn)連接mongodb數(shù)據(jù)庫的方法示例
- Nodejs使用Mongodb存儲與提供后端CRD服務(wù)詳解
- Nodejs實(shí)現(xiàn)的操作MongoDB數(shù)據(jù)庫功能完整示例
相關(guān)文章
Node.js中的package.json與cnpm命令行工具介紹
這篇文章介紹了Node.js中的package.json與cnpm命令行工具,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-06-06
Nest.js中使用HTTP五種數(shù)據(jù)傳輸方式小結(jié)
本文主要介紹了Nest.js中使用HTTP五種數(shù)據(jù)傳輸方式小結(jié),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-05-05
Node.js中path.join()優(yōu)勢例舉分析
在本篇文章里小編給大家整理的是一篇關(guān)于Node.js中path.join()優(yōu)勢例舉分析,有興趣的朋友們可以學(xué)習(xí)下。2021-08-08

