标签:
Kc.find({bjid:req.params.bjid}).sort({‘_id‘:1}).exec(function(err,kcs){
if(err){
res.json({no:0,msg:err});
}else{
var result = {no:1};
result.obj=kcs;
res.json(result);
}
});
标签:
原文地址:http://www.cnblogs.com/yshyee/p/4599095.html