mongoose v4.5.2 发布,让node.js更优雅的操作MongoDB

jopen 8年前
   <p style="text-align: center;"><img alt="" src="https://simg.open-open.com/show/8b6dbbafd94e5f9bf087b7a0b31ef2d4.jpg" /></p>    <p>Mongoose是MongoDB的一个对象模型工具,既类似ORM,让node.js操作MongoDB更加方便。</p>    <p>官方例子:</p>    <pre>  <code class="language-javascript">// 引入 mongoose 这个模块  var mongoose = require('mongoose');  // 连接对应的数据库:mongodb://localhost/test  mongoose.connect('mongodb://localhost/test');  // 创建了一个名为 Cat 的 model,mongoose 会将名词变为复数,在这里,collection 的名字会是 `cats`。  // model定义: 有一个 String 类型的 name  var Cat = mongoose.model('Cat', {name: String});  var kitty = new Cat({ name: 'Zildjian'});  // 调用 .save 方法后,mongoose 会去你的 mongodb 中的 test 数据库里,存入一条记录。  kitty.save(function (err) {    if (err) {      console.log(err);    } else {      console.log('meow');    }  });</code></pre>    <h2>更新日志</h2>    <ul>     <li>fix(connection): add checks for collection presence for <code>onOpen</code> and <code>onClose</code> #4259 <a href="/misc/goto?guid=4958991692993627150">nodkz</a></li>     <li>fix(cast): allow strings for $type operator #4256</li>     <li>fix(querycursor): support lean() #4255 <a href="/misc/goto?guid=4958991693123543096">pyramation</a></li>     <li>fix(aggregate): allow setting noCursorTimeout option #4241</li>     <li>fix(document): handle undefined for Array.pull #4222 <a href="/misc/goto?guid=4958991693246785183">Sebmaster</a></li>     <li>fix(connection): ensure promise.catch() catches initial connection error #4135</li>     <li>fix(document): show additional context for VersionError #2633</li>    </ul>    <h2>下载地址</h2>    <ul>     <li><a href="/misc/goto?guid=4958991693376407868" rel="nofollow"><strong>Source code</strong> (zip)</a></li>     <li><a href="/misc/goto?guid=4958991693505235207" rel="nofollow"><strong>Source code</strong> (tar.gz)</a></li>    </ul>    <h2> </h2>