白板的微信
很多nodejs的新手都是直接用mongodb本身直接操作数据库,我之前也是如此不知道大家有没有遇到过这个错误:Error: db object already connecting, open cannot be called multiple times也许你会说是异步写得不好,但是就算异步写得再好,也逃避不了这个错误因为无论如何,都要用到db.open();这东西,而且访问完毕还得db.close();于是就有一个问题:刷新得太快,或者多个用户同时访问数据库,数据库没来得及关闭,那个Error就会出现可以做一下实验,在访问数据库的页面按住F5,就会很容易看到在页面上或者控制台上抛出的Error勒用mongoose就不会出现这错误勒,因为一旦连接好数据库,db就会处于open状态,不存在访问时要打开,然后又要关闭的规则,然后我果断把所有mongodb部分改为mongoose,按住F5毫无压力啊,而且尼玛代码又短了一大截!前后代码对比一下:之前每次操作要open:User.get = function get(username, callback) {mongodb.open(function(err, db) {if (err) {return callback(err);}//读取 users 集合db.collection('users', function(err, collection) {if (err) {mongodb.close();return callback(err);}//查找 name 属性为 username 的文档collection.findOne({name: username}, function(err, doc) {mongodb.close();if (doc) callback (err, doc);else callback (err, null);});});});};现在,建立好mongoose对象模型后只需几行代码即可实现相同的功能:User.get = function get(username, callback) {users.findOne({name:username}, function(err, doc){if (err) {return callback(err, null);}return callback(err, doc);});};
浮云间
node.js操作mongodb提供了多种驱动,包含mongoose,mongoskin,node-mongodb-native(官方)等。mongoose官网上作者的解释:Let's face it, writing MongoDB validation, casting and business logic boilerplate is a drag. That's why we wrote Mongoose.Mongoose provides a straight-forward, schema-based solution to model your application data. It includes built-in type casting, validation, query building, business logic hooks and more, out of the box.Mongoose库简而言之就是在node环境中操作MongoDB数据库的一种便捷的封装,一种对象模型工具,类似ORM,Mongoose将数据库中的数据转换为JavaScript对象以供你在应用中使用