我在用 Node.js + Mongoose + MongoDB 开发一个小程序,其中有一个操作是这样的:
function get( query ){
query = query||null;
if( query === null ){
return this.model.find( {}, function( err, docs ){
return docs;
});
}else{
return this.model.find( query, function( err, docs ){
return docs;
}
}
}
目标:get 是我用来读取 Collection 里面的文档的,query 是查询条件,如果没有传入查询条件,则返回整个 Collection;如果传入了查询条件,则按条件查询。
错误:因为 this.model.find
方法是异步的,在find
返回查询结果之前,get
函数已经return
了,所以我总是得到undefined
。
请问有什么办法能让get
得到find
的返回值吗?
nodejs整个设计思路都是异步的,不要用同步的思维去写。
异步的请求最好是使用回调
query 为空时,返回的既是整个 collection
你可以用Q,Step这类的库,强制查询同步。
其实大多数在写测试的时候确实需要同步方法,我也特意问过Mongoose的作者,不过他觉得没必要。。。