猫鼬,在模式(枚举)中定义一个 OR 引用?
Mongoose, define a OR ref in schema(enum)?
thread = new mongoose.Schema({
post: {type: Schema.Types.ObjectId, ref: 'Post'},
comment: {type: Schema.Types.ObjectId, ref: 'Comment'},
})
但实际上线程只能有post或评论,不能同时有。
所以理想的定义应该是枚举
thread = new mongoose.Schema({
data: {type: Schema.Types.ObjectId, ref: 'Post'} OR?? {type: Schema.Types.ObjectId, ref: 'Comment'},
})
如何在 Mongoose 中定义这种东西?
或者做这种事情的正确方法是什么?
你要的是鉴别器。这当然实际上指的是同一个"core"模型,但是它以一种特殊的方式处理,以便区分不同类型的对象,甚至认为它们有自己的模型。
作为使用示例列表:
var async = require('async'),
util = require('util'),
mongoose = require('mongoose'),
Schema = mongoose.Schema;
mongoose.connect('mongodb://localhost/content');
mongoose.set("debug",true);
function BaseSchema() {
Schema.apply(this,arguments);
this.add({
"author": String,
"body": String,
"created": { "type": Date, "default": Date.now() }
});
}
util.inherits(BaseSchema,Schema);
var itemSchema = new BaseSchema();
var postSchema = new BaseSchema({
"title": String,
"score": Number
});
var commentSchema = new BaseSchema({
"post": { "type": Schema.Types.ObjectId, "ref": "Post" }
});
var Item = mongoose.model('Item',itemSchema),
Post = Item.discriminator('Post',postSchema),
Comment = Item.discriminator('Comment',commentSchema);
async.series(
[
// Clean data
function(callback) {
Item.remove({},callback);
},
// Insert Post
function(callback) {
async.waterfall(
[
function(callback) {
Post.create({
"title": "This post",
"author": "bill",
"body": "Whoa!"
},callback);
},
function(post,callback) {
Comment.create({
"author": "ted",
"body": "Excellent!",
"post": post
},callback);
}
],
callback
);
},
function(callback) {
console.log("All Items");
Item.find().exec(function(err,docs) {
console.log(docs);
callback(err);
})
},
function(callback) {
console.log("Just populated Comments");
Comment.find().populate('post').exec(function(err,docs) {
console.log(docs)
callback(err);
});
}
],
function(err) {
if (err) throw err;
mongoose.disconnect();
}
);
并且输出:
All Items
Mongoose: items.find({}) { fields: undefined }
[ { created: Wed Mar 16 2016 14:15:56 GMT+1100 (AEDT),
__t: 'Post',
__v: 0,
body: 'Whoa!',
author: 'bill',
title: 'This post',
_id: 56e8cfed833e67750b678d9c },
{ created: Wed Mar 16 2016 14:15:56 GMT+1100 (AEDT),
__t: 'Comment',
__v: 0,
post: 56e8cfed833e67750b678d9c,
body: 'Excellent!',
author: 'ted',
_id: 56e8cfed833e67750b678d9d } ]
Just populated Comments
Mongoose: items.find({ __t: 'Comment' }) { fields: undefined }
Mongoose: items.find({ __t: 'Post', _id: { '$in': [ ObjectId("56e8cfed833e67750b678d9c") ] } }) { fields: undefined }
[ { created: Wed Mar 16 2016 14:15:56 GMT+1100 (AEDT),
__t: 'Comment',
__v: 0,
post:
{ created: Wed Mar 16 2016 14:15:56 GMT+1100 (AEDT),
__t: 'Post',
__v: 0,
body: 'Whoa!',
author: 'bill',
title: 'This post',
_id: 56e8cfed833e67750b678d9c },
body: 'Excellent!',
author: 'ted',
_id: 56e8cfed833e67750b678d9d } ]
如果您浏览清单,您会发现我们确实为 Item
创建了一个模型,它将容纳所有对象,但最有趣的事情发生在以下几行:
var Item = mongoose.model('Item',itemSchema),
Post = Item.discriminator('Post',postSchema),
Comment = Item.discriminator('Comment',commentSchema);
因此,我们调用 Item.discriminator()
,而不是对接下来的两个模型定义使用 mongoose.model
。这将创建 "special models",它将包含在 Item
中,当然每种类型都有自己的附加模式,以及与该模式关联的任何逻辑。
由于所有数据实际上都在同一个集合中,即使我们单独使用每个模型,您也会看到每个对象都添加了一个特殊的键,如 __t
。这包含数据实际关联的模型的注册名称。
"debug"
选项设置,您可以看到 mongoose 实际上是如何发出查询的。因此,当您只想处理 Comment
时,__t
值会自动添加到查询条件(当然还有对象创建)。在我们要求 "comments" 包含对 Post
的引用的相同情况下,在查找应在 Post
模型中引用的内容时应用相同类型的过滤。
这是一个非常强大的模式,也可以使用与此处演示的相同类型的继承,或者仅基于完全空白或单独的模式定义。
如果它只是 "reference" 到此集合中数据的字段。然后在国外集合中使用 Item
的基础模型也有相同的结果。
var otherSchema = new Schema({
"item": { "type": Schema.Types.ObjectId, "ref": "Item" }
});
mongoose.model("Other",otherSchema);
mongoose.model("Other").find().populate("item").exec(function(err,docs( {
// populates references with either Comment or Post
// as per their assigned __t value
});
如果引用的项目是 Comment
,那么它会获得评论模式的所有附加好处。或者如果它是一个 Post
,那么你会看到相同的第一个 class 对象处理。
因此,无论您想以何种方式使用它,一旦使用鉴别器定义,猫鼬就会为您解决。
thread = new mongoose.Schema({
post: {type: Schema.Types.ObjectId, ref: 'Post'},
comment: {type: Schema.Types.ObjectId, ref: 'Comment'},
})
但实际上线程只能有post或评论,不能同时有。
所以理想的定义应该是枚举
thread = new mongoose.Schema({
data: {type: Schema.Types.ObjectId, ref: 'Post'} OR?? {type: Schema.Types.ObjectId, ref: 'Comment'},
})
如何在 Mongoose 中定义这种东西?
或者做这种事情的正确方法是什么?
你要的是鉴别器。这当然实际上指的是同一个"core"模型,但是它以一种特殊的方式处理,以便区分不同类型的对象,甚至认为它们有自己的模型。
作为使用示例列表:
var async = require('async'),
util = require('util'),
mongoose = require('mongoose'),
Schema = mongoose.Schema;
mongoose.connect('mongodb://localhost/content');
mongoose.set("debug",true);
function BaseSchema() {
Schema.apply(this,arguments);
this.add({
"author": String,
"body": String,
"created": { "type": Date, "default": Date.now() }
});
}
util.inherits(BaseSchema,Schema);
var itemSchema = new BaseSchema();
var postSchema = new BaseSchema({
"title": String,
"score": Number
});
var commentSchema = new BaseSchema({
"post": { "type": Schema.Types.ObjectId, "ref": "Post" }
});
var Item = mongoose.model('Item',itemSchema),
Post = Item.discriminator('Post',postSchema),
Comment = Item.discriminator('Comment',commentSchema);
async.series(
[
// Clean data
function(callback) {
Item.remove({},callback);
},
// Insert Post
function(callback) {
async.waterfall(
[
function(callback) {
Post.create({
"title": "This post",
"author": "bill",
"body": "Whoa!"
},callback);
},
function(post,callback) {
Comment.create({
"author": "ted",
"body": "Excellent!",
"post": post
},callback);
}
],
callback
);
},
function(callback) {
console.log("All Items");
Item.find().exec(function(err,docs) {
console.log(docs);
callback(err);
})
},
function(callback) {
console.log("Just populated Comments");
Comment.find().populate('post').exec(function(err,docs) {
console.log(docs)
callback(err);
});
}
],
function(err) {
if (err) throw err;
mongoose.disconnect();
}
);
并且输出:
All Items
Mongoose: items.find({}) { fields: undefined }
[ { created: Wed Mar 16 2016 14:15:56 GMT+1100 (AEDT),
__t: 'Post',
__v: 0,
body: 'Whoa!',
author: 'bill',
title: 'This post',
_id: 56e8cfed833e67750b678d9c },
{ created: Wed Mar 16 2016 14:15:56 GMT+1100 (AEDT),
__t: 'Comment',
__v: 0,
post: 56e8cfed833e67750b678d9c,
body: 'Excellent!',
author: 'ted',
_id: 56e8cfed833e67750b678d9d } ]
Just populated Comments
Mongoose: items.find({ __t: 'Comment' }) { fields: undefined }
Mongoose: items.find({ __t: 'Post', _id: { '$in': [ ObjectId("56e8cfed833e67750b678d9c") ] } }) { fields: undefined }
[ { created: Wed Mar 16 2016 14:15:56 GMT+1100 (AEDT),
__t: 'Comment',
__v: 0,
post:
{ created: Wed Mar 16 2016 14:15:56 GMT+1100 (AEDT),
__t: 'Post',
__v: 0,
body: 'Whoa!',
author: 'bill',
title: 'This post',
_id: 56e8cfed833e67750b678d9c },
body: 'Excellent!',
author: 'ted',
_id: 56e8cfed833e67750b678d9d } ]
如果您浏览清单,您会发现我们确实为 Item
创建了一个模型,它将容纳所有对象,但最有趣的事情发生在以下几行:
var Item = mongoose.model('Item',itemSchema),
Post = Item.discriminator('Post',postSchema),
Comment = Item.discriminator('Comment',commentSchema);
因此,我们调用 Item.discriminator()
,而不是对接下来的两个模型定义使用 mongoose.model
。这将创建 "special models",它将包含在 Item
中,当然每种类型都有自己的附加模式,以及与该模式关联的任何逻辑。
由于所有数据实际上都在同一个集合中,即使我们单独使用每个模型,您也会看到每个对象都添加了一个特殊的键,如 __t
。这包含数据实际关联的模型的注册名称。
"debug"
选项设置,您可以看到 mongoose 实际上是如何发出查询的。因此,当您只想处理 Comment
时,__t
值会自动添加到查询条件(当然还有对象创建)。在我们要求 "comments" 包含对 Post
的引用的相同情况下,在查找应在 Post
模型中引用的内容时应用相同类型的过滤。
这是一个非常强大的模式,也可以使用与此处演示的相同类型的继承,或者仅基于完全空白或单独的模式定义。
如果它只是 "reference" 到此集合中数据的字段。然后在国外集合中使用 Item
的基础模型也有相同的结果。
var otherSchema = new Schema({
"item": { "type": Schema.Types.ObjectId, "ref": "Item" }
});
mongoose.model("Other",otherSchema);
mongoose.model("Other").find().populate("item").exec(function(err,docs( {
// populates references with either Comment or Post
// as per their assigned __t value
});
如果引用的项目是 Comment
,那么它会获得评论模式的所有附加好处。或者如果它是一个 Post
,那么你会看到相同的第一个 class 对象处理。
因此,无论您想以何种方式使用它,一旦使用鉴别器定义,猫鼬就会为您解决。