Mongoose v4.7.0 发布,让node.js更优雅的操作MongoDB
jopen 8年前
<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> <p> </p> <h2>更新日志</h2> <ul> <li>docs: clean up schematypes #4732 <a href="/misc/goto?guid=4958995677078147462">kidlj</a></li> <li>perf: only get stack when necessary with VersionError #4726 <a href="/misc/goto?guid=4958991693246785183">Sebmaster</a></li> <li>fix(query): ensure correct casting when setting array element #4724</li> <li>fix(connection): ensure db name gets set when you pass 4 params #4721</li> <li>fix: prevent TypeError in node v7 #4719 #4706</li> <li>feat(document): support .set() on virtual subpaths #4716</li> <li>feat(populate): support populate virtuals on nested schemas #4715</li> <li>feat(querycursor): support transform option and .map() #4714 #4705 <a href="/misc/goto?guid=4958995677203820233">cblanc</a></li> <li>fix(document): dont set defaults on not-selected nested paths #4707</li> <li>fix(populate): don't throw if empty string passed to populate #4702</li> <li>feat(model): add <code>loadClass()</code> function for importing schema from ES6 class #4668 <a href="/misc/goto?guid=4958995677291189758">rockmacaca</a></li> </ul> <h2>下载</h2> <ul> <li><a href="/misc/goto?guid=4958995677388073503" rel="nofollow"><strong>Source code</strong> (zip)</a></li> <li><a href="/misc/goto?guid=4958995677488685369" 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/618f2d09">http://www.open-open.com/news/view/618f2d09</a></p>