nodejs+mongodb aggregate级联查询的示例分析
短信预约 -IT技能 免费直播动态提醒
小编给大家分享一下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 } ]
以上是“nodejs+mongodb aggregate级联查询的示例分析”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341