Mongoose v4.7.2 发布,让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>test(populate): fix justOne test #4772 <a href="/misc/goto?guid=4958995677203820233">cblanc</a></li>     <li>chore: fix benchmarks #4769 <a href="/misc/goto?guid=4958994134330208872">billouboq</a></li>     <li>fix(document): handle setting subdoc to null after setting parent doc #4766</li>     <li>fix(query): support passRawResult with lean #4762 #4761 <a href="/misc/goto?guid=4958996194842935769">mhfrantz</a></li>     <li>fix(query): throw StrictModeError if upsert with nonexisting field in condition #4757</li>     <li>test: fix a couple of sort tests #4756 <a href="/misc/goto?guid=4958996194958890586">japod</a></li>     <li>chore: upgrade mongodb driver -> 2.2.12 #4753 <a href="/misc/goto?guid=4958996195071715144">mdlavin</a></li>     <li>fix(query): handle update with upsert and overwrite correctly #4749</li>    </ul>    <h2>下载</h2>    <ul>     <li><a href="/misc/goto?guid=4958996195181866817" rel="nofollow"><strong>Source code</strong> (zip)</a></li>     <li><a href="/misc/goto?guid=4958996195285486611" 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/76c5ce8a">http://www.open-open.com/news/view/76c5ce8a</a></p>