我想在MongoDB中只有一个versioneditems
集合,但我需要注册VersionedItem
模型和ItemPatch
模型,因为我需要创建ItemPatch
个es填充VersionedItem
。
没有单独的ItemPatch
文档(它们嵌入在VersionedItem
中)。下面的代码是有效的,除了在MongoDB中创建一个额外的集合:
SRC /模型/ versionedItemFactory.js
const VersionedItemSchema = require('../schemas/VersionedItem');
module.exports = (db) => {
var VersionedItemModel = db.model('VersionedItem', VersionedItemSchema);
return VersionedItemModel;
};
SRC /模型/ itemPatchFactory.js
const ItemPatchSchema = require('../schemas/ItemPatch');
module.exports = (db) => {
var ItemPatchModel = db.model('ItemPatch', ItemPatchSchema);
return ItemPatchModel;
};
SRC /模式/ util的/ asPatch.js
var mongoose = require('mongoose');
module.exports = function _asPatch(schema) {
return new mongoose.Schema({
createdAt: { type: Date, default: Date.now },
jsonPatch: {
op: { type: String, default: 'add' },
path: { type: String, default: '' },
value: { type: schema }
}
});
};
SRC /模式/ Item.js
var mongoose = require('mongoose');
module.exports = new mongoose.Schema({
title: { type: String, index: true },
content: { type: String },
type: { type: String, default: 'txt' }
}, { _id: false });
SRC /模式/ ItemPatch.js
var asPatch = require('./util/asPatch');
var ItemSchema = require('./Item');
module.exports = asPatch(ItemSchema);
SRC /模式/ VersionedItem.js
var mongoose = require('mongoose');
var ItemPatchSchema = require('./ItemPatch');
module.exports = new mongoose.Schema({
createdAt: { type: Date, default: Date.now },
patches: [
{
createdAt: { type: Date, default: Date.now },
jsonPatch: { type: ItemPatchSchema }
}
]
});
然后注册:
db.once('open', function() {
require('./models/itemPatchFactory')(db);
require('./models/versionedItemFactory')(db);
});
我需要通过ItemPatch
注册itemPatchFactory
模型,因为我希望能够像这样填充版本化项目:
var itemPatch = new db.models.ItemPatch({
jsonPatch: {
op: 'add',
path: '',
value: {
title: 'This is a title',
content: 'This is content',
type: 'txt'
}
}
});
var itemPatch2 = new db.models.ItemPatch({
jsonPatch: {
value: {
title: 'This is a title 2',
content: 'This is content 2'
}
}
});
var versionedSomething = new db.models.VersionedItem();
versionedSomething.patches.push(itemPatch);
versionedSomething.patches.push(itemPatch2);
versionedSomething.save(function (err, result) {
if (err) throw err;
console.log('result:', result);
});
这成功创建了带有2个补丁的版本化项目,但在MongoDB中创建了一个(空)itempatches
集合,我想避免这种情况。
答案 0 :(得分:0)
没有相应的集合就无法创建Model
,但我认为您实际上并不需要这样做。
您可以简单地为子级创建一个javascript对象并将其推送到父级集合。请从Mongoose文档(https://mongoosejs.com/docs/subdocs.html)中查看此代码段
var Parent = mongoose.model('Parent');
var parent = new Parent;
// create a comment
parent.children.push({ name: 'Liesl' });
var subdoc = parent.children[0];
console.log(subdoc) // { _id: '501d86090d371bab2c0341c5', name: 'Liesl' }
subdoc.isNew; // true
parent.save(function (err) {
if (err) return handleError(err)
console.log('Success!');
});
但是,您可以为子文档创建Schema
。这样,您就可以在从父级集合进行读/写操作时强制执行该结构:
var childSchema = new Schema({ name: 'string' });
var parentSchema = new Schema({
// Array of subdocuments
children: [childSchema],
// Single nested subdocuments. Caveat: single nested subdocs only work
// in mongoose >= 4.2.0
child: childSchema
});