node.js操作MongoDB时,需要安装mongodb包
1、使用npm安装cnpm
2、使用cnpm安装mongodb包
node.js操作MongoDB时的四种方式:插入数据、更新数据、删除数据、查找数据。
注意: 操作前需要启动服务器 同时需要设置操作的数据库、操作的集合
1、插入数据
var writeData = function(db,callback) {
// 连接到集合
var collection = db.collection('person');
// 插入数据
var data = [{'name':'20170906','age':'22'}];
collection.insert(data,function(error,result) {
if (error) {
console.log('error:' + error);
return;
};
// 连接到集合
var collection = db.collection('person');
// 插入数据
var data = [{'name':'20170906','age':'22'}];
collection.insert(data,function(error,result) {
if (error) {
console.log('error:' + error);
return;
};
callback(result);
});
}
MongoClient.connect(DB_CONN_STR,db) {
console.log('连接成功');
writeData(db,function(result) {
console.log(result);
db.close();
})
})
2、更新数据
var updateData = function(db,callback) {
// 连接到集合
var collection = db.collection('person');
// 修改数据
var where = {'name':'20170906'};
var update = {$set:{'age':'33'}};
collection.update(where,update,db) {
console.log('连接成功');
updateData(db,function(result) {
console.log(result);
db.close();
})
})
// 连接到集合
var collection = db.collection('person');
// 修改数据
var where = {'name':'20170906'};
var update = {$set:{'age':'33'}};
collection.update(where,update,db) {
console.log('连接成功');
updateData(db,function(result) {
console.log(result);
db.close();
})
})
3、删除数据
var removeData = function(db,callback) {
// 连接到集合
var collection = db.collection('person');
// 删除数据
var where = {'age':'22'};
collection.remove(where,db) {
console.log('连接成功');
removeData(db,function(result) {
console.log(result);
db.close();
})
})
// 连接到集合
var collection = db.collection('person');
// 删除数据
var where = {'age':'22'};
collection.remove(where,db) {
console.log('连接成功');
removeData(db,function(result) {
console.log(result);
db.close();
})
})
4、查找数据
var readData = function(db,callback) {
// 连接到集合
var collection = db.collection('person');
// 查询数据
var where = {'name':'20170906'};
collection.find(where).toArray(function(error,result) {
if (error)
{
console.log('error:' + error);
return;
};
// 连接到集合
var collection = db.collection('person');
// 查询数据
var where = {'name':'20170906'};
collection.find(where).toArray(function(error,result) {
if (error)
{
console.log('error:' + error);
return;
};
callback(result);
});
}
MongoClient.connect(DB_CONN_STR,db) {
console.log('连接成功');
readData(db,function(result) {
console.log(result);
db.close();
})
})
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:https://www.f2er.com/nodejs/35888.html