码迷,mamicode.com
首页 > 其他好文 > 详细

mongoose学习

时间:2015-04-22 18:45:37      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:occupation   example   further   equals   where   

An instance of Query was returned which allows us to build up our query. Taking this example further:

Person
.find({ occupation: /host/ })
.where(‘name.last‘).equals(‘Ghost‘)
.where(‘age‘).gt(17).lt(66)
.where(‘likes‘).in([‘vaporizing‘, ‘talking‘])
.limit(10)
.sort(‘-occupation‘)
.select(‘name occupation‘)
.exec(callback);


本文出自 “mongoose学习” 博客,请务必保留此出处http://longxboy.blog.51cto.com/10152095/1637191

mongoose学习

标签:occupation   example   further   equals   where   

原文地址:http://longxboy.blog.51cto.com/10152095/1637191

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!