ES6封裝MongoDB的CRUD
node.js呼叫mangodb的操作還是有點繁瑣的,為了簡化底層操作,關注具體業務,我特意吧MongoDB封裝了一下,話不多說直接看程式碼
封裝程式碼
let MongoClient = require('mongodb').MongoClient;
const url = "mongodb://127.0.0.1:27017/"
class Dbc {
constructor(dataName,colName)
{
this.dataName = dataName
this.colName = colName
}
//查詢
find(obj)
{
let that=this
return new Promise((resolve,reject) =>
{
MongoClient.connect(url,{useNewUrlParser:true},function (err,dbs) {
if (err)
{
reject(err)
}
else
{
let collection=dbs.db(that.dataName).collection(that.colName)
collection.find(obj).toArray(function (err,data) {
if (err)
reject(err)
else
resolve(data)
dbs.close()
})
}
})
})
}
//插入一個物件
insertOne(obj){
let that = this;
MongoClient.connect(url,function(err,dbs){
if (err) throw err;
let collection=dbs.db(that.dataName).collection(that.colName)
collection.insertOne(obj,function(err, res) {
if (err) throw err;
console.log("文件插入成功:",res.result)
dbs.close();
})
})
}
//插入一個物件陣列
insertMany(obj){
let that = this;
MongoClient.connect(url,function(err,dbs){
if (err) throw err;
let collection=dbs.db(that.dataName).collection(that.colName)
collection.insertMany(obj,function(err, res) {
if (err) throw err;
console.log("插入的文件數量為: " + res.insertedCount)
dbs.close();
})
})
}
//插入一個陣列物件
insertMany(obj){
let that = this;
MongoClient.connect(url,function(err,dbs){
if (err) throw err;
let collection=dbs.db(that.dataName).collection(that.colName)
collection.insertMany(obj,function(err, res) {
if (err) throw err;
console.log("插入的文件數量為: " + res.insertedCount)
dbs.close();
})
})
}
//刪除一個,刪除第一個滿足物件
deleteOne(setObj)
{
let that = this;
MongoClient.connect(url,function(err,dbs){
if (err) throw err;
let collection=dbs.db(that.dataName).collection(that.colName)
collection.deleteOne(setObj,function(err) {
if (err) throw err;
console.log("文件刪除成功" )
dbs.close();
})
})
}
//刪除所有滿足條件的物件
deleteMany(setObj)
{
let that = this;
MongoClient.connect(url,function(err,dbs){
if (err) throw err;
let collection=dbs.db(that.dataName).collection(that.colName)
collection.deleteMany(setObj,function(err,obj) {
if (err) throw err;
console.log(obj.result.n + " 條文件被刪除")
dbs.close();
})
})
}
//更新一條資料
updateOne(whereObj,setObj)
{
let that = this;
MongoClient.connect(url,function(err,dbs){
if (err) throw err;
let collection=dbs.db(that.dataName).collection(that.colName)
collection.updateOne(whereObj,{$set:setObj},function(err) {
if (err) throw err;
console.log("文件更新成功")
dbs.close();
})
})
}
//更新多條資料
updateMany(whereObj,setObj)
{
let that = this;
MongoClient.connect(url,function(err,dbs){
if (err) throw err;
let collection=dbs.db(that.dataName).collection(that.colName)
collection.updateMany(whereObj,{$set:setObj},function(err,res) {
if (err) throw err;
console.log(res.result.nModified + " 條文件被更新")
dbs.close();
})
})
}
}
module.exports={
Dbc
}
呼叫程式碼
const {Dbc} = require("./mongodbc")
const dbc = new Dbc("mydb","user")
//新增
var myobj = [
{ name: '菜鳥工具', url: 'https://c.runoob.com', type: 'cn'},
{ name: 'Google', url: 'https://www.google.com', type: 'en'},
{ name: 'Facebook', url: 'https://www.google.com', type: 'en'}
];
dbc.insertMany(myobj)
//刪除type為en的資料
dbc.deleteMany({type:"en"})
//修改
dbc.updateMany({type:"en"},{url:"這是被修改後的路徑"})
//查詢type為en的資料
dbc.find({type:"en"}).then(data => {
console.log(data)
})
相關文章
- 方便好用CRUD封裝封裝
- 基於MongoDb官方C#驅動封裝MongoDbCsharpHelper類(CRUD類)MongoDBC#封裝CSharp
- MongoDB 新手入門 - CRUDMongoDB
- Golang 對MongoDB的操作簡單封裝GolangMongoDB封裝
- SpringBoot實現mongoDB的CRUDSpring BootMongoDB
- MongoDB 4.X CRUD基本操作MongoDB
- 原生es6封裝一個Promise物件封裝Promise物件
- 【MongoDB學習筆記】-使用 MongoDB 進行 CRUD 操作(上)MongoDB筆記
- 【MongoDB學習筆記】-使用 MongoDB 進行 CRUD 操作(下)MongoDB筆記
- MongoDB Python官方驅動 PyMongo 的簡單封裝MongoDBPython封裝
- Delphi 根據資料庫表生成Record型別,並封裝CRUD資料庫型別封裝
- ES6(四)用Promise封裝一下IndexedDBPromise封裝Index
- js 動態新增class封裝(es6語法)JS封裝
- 使用go在mongodb中進行CRUD操作MongoDB
- Mongodb總結3-稍微封裝一下MongoDB封裝
- 教程:如何在.NET中使用MongoDB以及基本的CRUD操作MongoDB
- Mongodb總結2-Java版本的HelloWorld-CRUD例子MongoDBJava
- 【mongodb】mongodb的安裝MongoDB
- [ 造輪子 ] 手動封裝 AJAX (二) —— ES6 版封裝
- ES6中Promise 承諾物件封裝非同步操作解析Promise物件封裝非同步
- 【封裝小技巧】is 系列方法的封裝封裝
- 【JavaScript框架封裝】公共框架的封裝JavaScript框架封裝
- 《深入理解ES6》筆記——用模組封裝程式碼(13)筆記封裝
- .NET Core MongoDB資料倉儲和工作單元模式封裝MongoDB模式封裝
- ES6最簡單的方式訪問MongoDBMongoDB
- MongoDB的安裝MongoDB
- 【封裝那些事】 缺失封裝封裝
- Dapper的封裝、二次封裝、官方擴充套件包封裝,以及ADO.NET原生封裝APP封裝套件
- 【封裝小技巧】列表處理函式的封裝封裝函式
- 封裝封裝
- Mongodb的安裝(一)MongoDB
- jquery ajax 的封裝jQuery封裝
- 【封裝小技巧】數字處理函式的封裝封裝函式
- 封裝JDBC—非框架開發必備的封裝類封裝JDBC框架
- Sqlite封裝1-基本封裝-SqliteToolSQLite封裝
- Flutter 封裝:富文字 RichText 極簡封裝Flutter封裝
- mongodb 安裝MongoDB
- 安裝mongodbMongoDB