nodejs+mongodb aggregate级联查询操作示例
网络编程 2021-07-04 17:33www.168986.cn编程入门
这篇文章主要介绍了nodejs+mongodb aggregate级联查询操作,结合实例形式分析了基于nodejs的mongodb数据库级联查询相关操作技巧,需要的朋友可以参考下
本文实例讲述了nodejs+mongodb aggregate级联查询操作。分享给大家供大家参考,具体如下
最近完成了一个nodejs+mongoose的项目,碰到了mongodb的级联查询操作。情形是实现一个排行榜,查看某个公司(anization)下属客户中发表有效文ruan章wen最多的前十人。
Aount表公司的信息单独存在一个aount表里。
var AountSchema = new Schema({ loginname: {type: String}, password: {type: String}, / 联系方式 / //账户公司名 Name: {type: String}, //地址 address: {type: String}, //公司介绍 intro: {type: String} }); mongoose.model('Aount', AountSchema);
Cusomer表公司的客户群。
var CustomerSchema = new Schema({ / 基本信息 / //密码 password: {type: String}, //归属于哪个Aount belongToAount: {type: ObjectId, ref: 'Aount'}, //手机号,登录用 mobile: {type: String}, //真实姓名 realname: {type: String} }); CustomerSchema.index({belongToAount: 1, mobile: 1}, {unique: true}); mongoose.model('Customer', CustomerSchema);
article表
var articleSchema= new Schema({ belongToAount: {type: ObjectId, ref: 'Aount'}, title: {type: String}, text: {type: String}, createTime: {type: Date, default: Date.now}, author: {type: ObjectId, ref: 'Customer'}, //0,待确认,1 有效 ,-1 无效 status: {type: Number, default: 0} }); articleSchema.index({belongToAount: 1, createTime:-1,author: 1}, {unique: false}); mongoose.model('article', articleSchema);
这里要做的就是,由aountId→aggregate整理软文并排序→级联author找到作者的姓名及其他信息。
代码如下
exports.getRankList = function (aountid, callback) { AticleModel.aggregate( {$match: {belongToAount: mongoose.Types.ObjectId(aountid), status: 1}}, {$group: {_id: {customerId: "$author"}, number: {$sum: 1}}}, {$sort: {number: -1}}).limit(10).exec(function (err, aggregateResult) { if(err){ callback(err); return; } var ep = new EventProxy(); ep.after('got_customer', aggregateResult.length, function (customerList) { callback(null, customerList); }); aggregateResult.forEach(function (item) { Customer.findOne({_id: item._id.customerId}, ep.done(function (customer) { item.customerName = customer.realname; item.customerMobile=cusomer.mobile; // do someting ep.emit('got_customer', item); })); }) }); };
返回的结果格式(这里仅有两条记录,实际为前十)
[ { _id: { customerId: 559a5b6f51a446602032fs21 }, number: 5, customerName: 'test2', mobile:22 } , { _id: { customerId: 559a5b6f51a446602041ee6f }, number: 1, customerName: 'test1', mobile: 11 } ]
希望本文所述对大家nodejs程序设计有所帮助。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程