最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

nodejs+mongodbaggregate级联查询操作示例

来源:动视网 责编:小采 时间:2020-11-27 19:44:22
文档

nodejs+mongodbaggregate级联查询操作示例

nodejs+mongodbaggregate级联查询操作示例:这篇文章主要介绍了nodejs+mongodb aggregate级联查询操作,结合实例形式分析了基于nodejs的mongodb数据库级联查询相关操作技巧,需要的朋友可以参考下本文实例讲述了nodejs+mongodb aggregate级联查询操作。分享给大家供大家参考,具体如下:最近完成了一个n
推荐度:
导读nodejs+mongodbaggregate级联查询操作示例:这篇文章主要介绍了nodejs+mongodb aggregate级联查询操作,结合实例形式分析了基于nodejs的mongodb数据库级联查询相关操作技巧,需要的朋友可以参考下本文实例讲述了nodejs+mongodb aggregate级联查询操作。分享给大家供大家参考,具体如下:最近完成了一个n


这篇文章主要介绍了nodejs+mongodb aggregate级联查询操作,结合实例形式分析了基于nodejs的mongodb数据库级联查询相关操作技巧,需要的朋友可以参考下

本文实例讲述了nodejs+mongodb aggregate级联查询操作。分享给大家供大家参考,具体如下:

最近完成了一个nodejs+mongoose的项目,碰到了mongodb的级联查询操作。情形是实现一个排行榜,查看某个公司(organization)下属客户中发表有效文ruan章wen最多的前十人。

Account表:公司的信息单独存在一个account表里。

var AccountSchema = new Schema({
 loginname: {type: String},
 password: {type: String},
 /**
 * 联系方式
 */
 //账户公司名
 comName: {type: String},
 //地址
 address: {type: String},
 //公司介绍
 intro: {type: String}
});
mongoose.model('Account', AccountSchema);

Cusomer表:公司的客户群。

var CustomerSchema = new Schema({
 /**
 * 基本信息
 */
 //密码
 password: {type: String},
 //归属于哪个Account
 belongToAccount: {type: ObjectId, ref: 'Account'},
 //手机号,登录用
 mobile: {type: String},
 //真实姓名
 realname: {type: String}
});
CustomerSchema.index({belongToAccount: 1, mobile: 1}, {unique: true});
mongoose.model('Customer', CustomerSchema);

article表

var articleSchema= new Schema({
 belongToAccount: {type: ObjectId, ref: 'Account'},
 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({belongToAccount: 1, createTime:-1,author: 1}, {unique: false});
mongoose.model('article', articleSchema);

这里要做的就是,由accountId→aggregate整理软文并排序→级联author找到作者的姓名及其他信息。

代码如下:

exports.getRankList = function (accountid, callback) {
 AticleModel.aggregate(
 {$match: {belongToAccount: mongoose.Types.ObjectId(accountid), 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 } ]

上面是我整理给大家的,希望今后会对大家有帮助。

相关文章:

JavaScript中的E-mail 地址格式验证

Vue项目中如何引入icon图标

Vue.js实现可配置的登录表单代码详解

文档

nodejs+mongodbaggregate级联查询操作示例

nodejs+mongodbaggregate级联查询操作示例:这篇文章主要介绍了nodejs+mongodb aggregate级联查询操作,结合实例形式分析了基于nodejs的mongodb数据库级联查询相关操作技巧,需要的朋友可以参考下本文实例讲述了nodejs+mongodb aggregate级联查询操作。分享给大家供大家参考,具体如下:最近完成了一个n
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top