db.collection('posts',function(err,collection){
if(err){
mongodb.close();
return callback(err);
}
var query = {};
if(thing){
query.user = thing;
collection.find({headid: thing}, function(err, doc){
mongodb.close();
if(doc){
var posts = new Posts(doc);
console.log(posts);
callback(err, posts);
}else{
callback(err, null);
}
});
代码我贴了一部分,是这样的,我需要查询posts这张表,根据headid来查询。传入的thing值是有的,但是终端显现的结果却不是我想要的,我要查询headid = thing的所用数据,如果我假设一条数据是一个json串的话,我要所有符合要求的json串