Mongoose v4.8.7 发布,让node.js更优雅的操作MongoDB

jopen 7年前
   <p style="text-align: center;"><img alt="" src="https://simg.open-open.com/show/8b6dbbafd94e5f9bf087b7a0b31ef2d4.jpg" /></p>    <p> </p>    <p>Mongoose是MongoDB的一个对象模型工具,既类似ORM,让node.js操作MongoDB更加方便。</p>    <p>官方例子:</p>    <p>// 引入 mongoose 这个模块</p>    <p>var mongoose = require('mongoose');</p>    <p>// 连接对应的数据库:mongodb://localhost/test</p>    <p>mongoose.connect('mongodb://localhost/test');</p>    <p>// 创建了一个名为 Cat 的 model,mongoose 会将名词变为复数,在这里,collection 的名字会是 `cats`。</p>    <p>// model定义: 有一个 String 类型的 name</p>    <p>var Cat = mongoose.model('Cat', {name: String});</p>    <p>var kitty = new Cat({ name: 'Zildjian'});</p>    <p>// 调用 .save 方法后,mongoose 会去你的 mongodb 中的 test 数据库里,存入一条记录。</p>    <p>kitty.save(function (err) {</p>    <p>  if (err) {</p>    <p>    console.log(err);</p>    <p>  } else {</p>    <p>    console.log('meow');</p>    <p>  }</p>    <p>});</p>    <h2>更新日志</h2>    <ul>     <li>fix(model): if last arg in spread is falsy, treat it as a callback #5061</li>     <li>fix(document): use $hook instead of hook to enable 'hook' as a path name #5047</li>     <li>fix(populate): dont select foreign field if parent field is selected #5037</li>     <li>fix(populate): handle passing no args to query.populate #5036</li>     <li>fix(update): use correct method for casting nested arrays #5032</li>     <li>fix(discriminator): handle array discriminators when casting $push #5009</li>    </ul>    <h2>下载</h2>    <ul>     <li><a href="/misc/goto?guid=4959002306831006674" rel="nofollow"><strong>Source code</strong> (zip)</a></li>     <li><a href="/misc/goto?guid=4959002306972741098" rel="nofollow"><strong>Source code</strong> (tar.gz)</a></li>    </ul>    <p>本站原创,转载时保留以下信息:<br /> 本文转自:深度开源(open-open.com)<br /> 原文地址:<a href="http://www.open-open.com/news/view/7890023f">http://www.open-open.com/news/view/7890023f</a></p>