我对Mongoose和MongoDB很陌生,所以我很难弄清楚这样的事情是否可能:
Item = new Schema({
id: Schema.ObjectId,
dateCreated: { type: Date, default: Date.now },
title: { type: String, default: 'No Title' },
description: { type: String, default: 'No Description' },
tags: [ { type: Schema.ObjectId, ref: 'ItemTag' }]
});
ItemTag = new Schema({
id: Schema.ObjectId,
tagId: { type: Schema.ObjectId, ref: 'Tag' },
tagName: { type: String }
});
var query = Models.Item.find({});
query
.desc('dateCreated')
.populate('tags')
.where('tags.tagName').in(['funny', 'politics'])
.run(function(err, docs){
// docs is always empty
});
有更好的方法吗?
编辑
对于任何混淆,我很抱歉。我想做的是获取所有包含有趣标签或政治标签的项目。
编辑
没有where子句的文档:
[{
_id: 4fe90264e5caa33f04000012,
dislikes: 0,
likes: 0,
source: '/uploads/loldog.jpg',
comments: [],
tags: [{
itemId: 4fe90264e5caa33f04000012,
tagName: 'movies',
tagId: 4fe64219007e20e644000007,
_id: 4fe90270e5caa33f04000015,
dateCreated: Tue, 26 Jun 2012 00:29:36 GMT,
rating: 0,
dislikes: 0,
likes: 0
},
{
itemId: 4fe90264e5caa33f04000012,
tagName: 'funny',
tagId: 4fe64219007e20e644000002,
_id: 4fe90270e5caa33f04000017,
dateCreated: Tue, 26 Jun 2012 00:29:36 GMT,
rating: 0,
dislikes: 0,
likes: 0
}],
viewCount: 0,
rating: 0,
type: 'image',
description: null,
title: 'dogggg',
dateCreated: Tue, 26 Jun 2012 00:29:24 GMT
}, ... ]
使用where子句,我得到一个空数组。
对于大于3.2的现代MongoDB,您可以使用$lookup
作为的替代品。在大多数情况下,这也具有在服务器上实际执行连接的优势,而不是
。填充()
所做的实际上是“多个查询”来“模拟”连接。
所以。从关系数据库的意义上说,
并不是真正的“连接”。另一方面,$lookup
运算符实际上在服务器上完成工作,并且或多或少类似于“LEFT JOIN”:
Item.aggregate(
[
{ "$lookup": {
"from": ItemTags.collection.name,
"localField": "tags",
"foreignField": "_id",
"as": "tags"
}},
{ "$unwind": "$tags" },
{ "$match": { "tags.tagName": { "$in": [ "funny", "politics" ] } } },
{ "$group": {
"_id": "$_id",
"dateCreated": { "$first": "$dateCreated" },
"title": { "$first": "$title" },
"description": { "$first": "$description" },
"tags": { "$push": "$tags" }
}}
],
function(err, result) {
// "tags" is now filtered by condition and "joined"
}
)
注意:这里的。collection.name
实际上计算为分配给模型的MongoDB集合的实际名称“字符串”。由于mongoose默认“复数”集合名称,并且$lookup
需要实际的MongoDB集合名称作为参数(因为它是服务器操作),因此这是在mongoose代码中使用的一个方便技巧,而不是直接“硬编码”集合名称。
虽然我们也可以在数组上使用$filter
来删除不需要的项目,但这实际上是最有效的形式,因为聚合管道优化针对$lookup
的特殊条件,然后是$unanta
和$match
条件。
这实际上导致三个管道阶段合二为一:
{ "$lookup" : {
"from" : "itemtags",
"as" : "tags",
"localField" : "tags",
"foreignField" : "_id",
"unwinding" : {
"preserveNullAndEmptyArrays" : false
},
"matching" : {
"tagName" : {
"$in" : [
"funny",
"politics"
]
}
}
}}
这是非常最佳的,因为实际操作“首先过滤集合以加入”,然后返回结果并“展开”数组。两种方法都被采用,因此结果不会超过16MB的BSON限制,这是客户端没有的约束。
唯一的问题是它在某些方面看起来“反直觉”,特别是当您希望将结果放在数组中时,但这就是$group
在这里的作用,因为它重建为原始文档形式。
同样不幸的是,我们现在根本不能用服务器使用的相同最终语法编写$lookup
。IMHO,这是一个需要纠正的疏忽。但是现在,简单地使用序列将起作用,并且是具有最佳性能和可扩展性的最可行的选择。
虽然这里显示的模式由于其他阶段如何被卷入$lookup
而得到了相当的优化,但它确实有一个缺点,即$lookup
和填充()
的操作通常固有的“LEFT JOIN”被$unstyle
的“最佳”用法所否定,这里不保留空数组。您可以添加保留NullAnd空数组
选项,但这否定了上述“优化”序列,并且基本上保留了所有三个阶段,这些阶段通常会在优化中组合。
MongoDB 3.6使用$lookup
的“更具表现力”形式进行扩展,允许“子管道”表达式。这不仅满足保留“LEFT JOIN”的目标,而且仍然允许最佳查询来减少返回的结果,并且具有简化得多的语法:
Item.aggregate([
{ "$lookup": {
"from": ItemTags.collection.name,
"let": { "tags": "$tags" },
"pipeline": [
{ "$match": {
"tags": { "$in": [ "politics", "funny" ] },
"$expr": { "$in": [ "$_id", "$$tags" ] }
}}
]
}}
])
用于将声明的“本地”值与“外部”值匹配的$expr
实际上是MongoDB现在使用原始$lookup
语法在“内部”所做的。通过以这种形式表达,我们可以自己在“子管道”中定制初始$match
表达式。
事实上,作为一个真正的“聚合管道”,您可以在这个“子管道”表达式中使用聚合管道做任何事情,包括将$lookup
的级别“嵌套”到其他相关集合。
进一步的用法有点超出了这里问题的范围,但是相对于“嵌套人口”,$lookup
的新用法模式允许这一点大致相同,并且在它的完整用法中“很多”更强大。
下面给出了一个在模型上使用静态方法的示例。一旦实现了该静态方法,调用就变成了:
Item.lookup(
{
path: 'tags',
query: { 'tags.tagName' : { '$in': [ 'funny', 'politics' ] } }
},
callback
)
或者增强变得更现代甚至会变成:
let results = await Item.lookup({
path: 'tags',
query: { 'tagName' : { '$in': [ 'funny', 'politics' ] } }
})
使其在结构上与. popate()
非常相似,但它实际上是在服务器上进行连接。为了完整起见,这里的用法根据父案例和子案例将返回的数据转换回mongoose文档实例。
这是相当微不足道的,很容易适应或只是使用,因为是最常见的情况。
注意:这里使用async只是为了简洁地运行封闭的示例。实际实现没有这种依赖关系。
const async = require('async'),
mongoose = require('mongoose'),
Schema = mongoose.Schema;
mongoose.Promise = global.Promise;
mongoose.set('debug', true);
mongoose.connect('mongodb://localhost/looktest');
const itemTagSchema = new Schema({
tagName: String
});
const itemSchema = new Schema({
dateCreated: { type: Date, default: Date.now },
title: String,
description: String,
tags: [{ type: Schema.Types.ObjectId, ref: 'ItemTag' }]
});
itemSchema.statics.lookup = function(opt,callback) {
let rel =
mongoose.model(this.schema.path(opt.path).caster.options.ref);
let group = { "$group": { } };
this.schema.eachPath(p =>
group.$group[p] = (p === "_id") ? "$_id" :
(p === opt.path) ? { "$push": `$${p}` } : { "$first": `$${p}` });
let pipeline = [
{ "$lookup": {
"from": rel.collection.name,
"as": opt.path,
"localField": opt.path,
"foreignField": "_id"
}},
{ "$unwind": `$${opt.path}` },
{ "$match": opt.query },
group
];
this.aggregate(pipeline,(err,result) => {
if (err) callback(err);
result = result.map(m => {
m[opt.path] = m[opt.path].map(r => rel(r));
return this(m);
});
callback(err,result);
});
}
const Item = mongoose.model('Item', itemSchema);
const ItemTag = mongoose.model('ItemTag', itemTagSchema);
function log(body) {
console.log(JSON.stringify(body, undefined, 2))
}
async.series(
[
// Clean data
(callback) => async.each(mongoose.models,(model,callback) =>
model.remove({},callback),callback),
// Create tags and items
(callback) =>
async.waterfall(
[
(callback) =>
ItemTag.create([{ "tagName": "movies" }, { "tagName": "funny" }],
callback),
(tags, callback) =>
Item.create({ "title": "Something","description": "An item",
"tags": tags },callback)
],
callback
),
// Query with our static
(callback) =>
Item.lookup(
{
path: 'tags',
query: { 'tags.tagName' : { '$in': [ 'funny', 'politics' ] } }
},
callback
)
],
(err,results) => {
if (err) throw err;
let result = results.pop();
log(result);
mongoose.disconnect();
}
)
或者对于带有async/await
且没有额外依赖项的Node 8. x及更高版本更现代一点:
const { Schema } = mongoose = require('mongoose');
const uri = 'mongodb://localhost/looktest';
mongoose.Promise = global.Promise;
mongoose.set('debug', true);
const itemTagSchema = new Schema({
tagName: String
});
const itemSchema = new Schema({
dateCreated: { type: Date, default: Date.now },
title: String,
description: String,
tags: [{ type: Schema.Types.ObjectId, ref: 'ItemTag' }]
});
itemSchema.statics.lookup = function(opt) {
let rel =
mongoose.model(this.schema.path(opt.path).caster.options.ref);
let group = { "$group": { } };
this.schema.eachPath(p =>
group.$group[p] = (p === "_id") ? "$_id" :
(p === opt.path) ? { "$push": `$${p}` } : { "$first": `$${p}` });
let pipeline = [
{ "$lookup": {
"from": rel.collection.name,
"as": opt.path,
"localField": opt.path,
"foreignField": "_id"
}},
{ "$unwind": `$${opt.path}` },
{ "$match": opt.query },
group
];
return this.aggregate(pipeline).exec().then(r => r.map(m =>
this({ ...m, [opt.path]: m[opt.path].map(r => rel(r)) })
));
}
const Item = mongoose.model('Item', itemSchema);
const ItemTag = mongoose.model('ItemTag', itemTagSchema);
const log = body => console.log(JSON.stringify(body, undefined, 2));
(async function() {
try {
const conn = await mongoose.connect(uri);
// Clean data
await Promise.all(Object.entries(conn.models).map(([k,m]) => m.remove()));
// Create tags and items
const tags = await ItemTag.create(
["movies", "funny"].map(tagName =>({ tagName }))
);
const item = await Item.create({
"title": "Something",
"description": "An item",
tags
});
// Query with our static
const result = (await Item.lookup({
path: 'tags',
query: { 'tags.tagName' : { '$in': [ 'funny', 'politics' ] } }
})).pop();
log(result);
mongoose.disconnect();
} catch (e) {
console.error(e);
} finally {
process.exit()
}
})()
从MongoDB 3.6及更高版本开始,即使没有$unwing
和$group
构建:
const { Schema, Types: { ObjectId } } = mongoose = require('mongoose');
const uri = 'mongodb://localhost/looktest';
mongoose.Promise = global.Promise;
mongoose.set('debug', true);
const itemTagSchema = new Schema({
tagName: String
});
const itemSchema = new Schema({
title: String,
description: String,
tags: [{ type: Schema.Types.ObjectId, ref: 'ItemTag' }]
},{ timestamps: true });
itemSchema.statics.lookup = function({ path, query }) {
let rel =
mongoose.model(this.schema.path(path).caster.options.ref);
// MongoDB 3.6 and up $lookup with sub-pipeline
let pipeline = [
{ "$lookup": {
"from": rel.collection.name,
"as": path,
"let": { [path]: `$${path}` },
"pipeline": [
{ "$match": {
...query,
"$expr": { "$in": [ "$_id", `$$${path}` ] }
}}
]
}}
];
return this.aggregate(pipeline).exec().then(r => r.map(m =>
this({ ...m, [path]: m[path].map(r => rel(r)) })
));
};
const Item = mongoose.model('Item', itemSchema);
const ItemTag = mongoose.model('ItemTag', itemTagSchema);
const log = body => console.log(JSON.stringify(body, undefined, 2));
(async function() {
try {
const conn = await mongoose.connect(uri);
// Clean data
await Promise.all(Object.entries(conn.models).map(([k,m]) => m.remove()));
// Create tags and items
const tags = await ItemTag.insertMany(
["movies", "funny"].map(tagName => ({ tagName }))
);
const item = await Item.create({
"title": "Something",
"description": "An item",
tags
});
// Query with our static
let result = (await Item.lookup({
path: 'tags',
query: { 'tagName': { '$in': [ 'funny', 'politics' ] } }
})).pop();
log(result);
await mongoose.disconnect();
} catch(e) {
console.error(e)
} finally {
process.exit()
}
})()
您的要求不直接支持,但可以通过在查询返回后添加另一个过滤步骤来实现。
首先,。填充('tags', null,{tagName:{$in:['有趣','政治'] } } )代码>绝对是您需要做的来过滤标签文档。然后,在查询返回后,您需要手动过滤掉没有任何与填充标准匹配的
标签
文档的文档。类似:
query....
.exec(function(err, docs){
docs = docs.filter(function(doc){
return doc.tags.length;
})
// do stuff with docs
});
尝试更换
.populate('tags').where('tags.tagName').in(['funny', 'politics'])
由
.populate( 'tags', null, { tagName: { $in: ['funny', 'politics'] } } )