沉沙
2018-06-21
来源 :
阅读 1493
评论 0
摘要:本篇教程讲解了操作mongodb的填删改查模块的制作及引入,希望阅读本篇文章以后大家有所收获,帮助大家对Node.js的理解更加深入。
安装相关模块
如果使用这个的话,你需要先自己安装一下他需要的模块,在根目录输入
npm install mongodb --save进行模块安装,安装成功以后就可以进行以下的步骤。
文件的引入
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) {
//增加数据
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) {
//更新数据
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) {
//删除数据
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) {
//查找数据
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;存入到了一个名字叫server.js的文件名内
使用
我们在需要使用页面先将模块引入,比如我在路由文件index.js里面引入:
const Server = require("../server.js");然后需要实例化对象,如下:let server = new Server();
如果需要配置相关信息,可以在实例化的时候传入一个对象配置,可以配置数据库的地址:
let server = new Server({url:"mongodb://localhost:27017/mydb"});里面封装了四个方法,添删改查,分别是添加方法
server.insert(数据表名,需要插入的数据(键值对的对象),回调函数);
更新方法
server.update(数据表名,查询的数据(对象),更新的数据(对象),回调函数);
删除方法
server.delete(数据表名,查询的数据(对象),回调函数);
查找方法
server.find(数据表名,查询的数据(对象),回调函数);
回调函数都会返回两个值,第一个布尔类型,是否处理成功,第二个值,查找返回查找到的个数,别的都返回处理成功的个数(现在一次只处理一条)
使用案例
比如我需要在一个路由里面查找数据,我就需要这样:
server.find("users",{username:"username"},function (bool,data) {
if(bool){
console.log("查询到数据为"+data.length+"条");
}
else{
console.log(data);
}
});
});上面的代码是查询了users表里面username为username的字段的数据,如果成功,后面data就会返回一个数组,如果出现错误,就直接返回data错误。
本文由职坐标整理发布,更多相关知识,请关注职坐标WEB前端Node.js频道!
喜欢 | 0
不喜欢 | 0
您输入的评论内容中包含违禁敏感词
我知道了

请输入正确的手机号码
请输入正确的验证码
您今天的短信下发次数太多了,明天再试试吧!
我们会在第一时间安排职业规划师联系您!
您也可以联系我们的职业规划师咨询:
版权所有 职坐标-一站式AI+学习就业服务平台 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
沪公网安备 31011502005948号