這篇文章主要介紹了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 } ]
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
以上是nodejs+mongodb aggregate級聯查詢操作範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!