我在 Mongoose >=4.4 中找不到任何涉及自定义对象(或value-objects )的高级 自定义模式类型的示例。
想象一下,我想使用自定义类型,例如:
function Polygon(c) {
this.bounds = [ /* some data */ ];
this.npoints = /* ... */
/* ... initialize polygon ... */
};
Polygon.prototype.area = function surfaceArea() { /**/ };
Polygon.prototype.toObject = function toObject() { return this.bounds; };
接下来,我实现了一个自定义 SchemaType,例如:
function PolygonType(key, options) {
mongoose.SchemaType.call(this, key, options, 'PolygonType');
}
PolygonType.prototype = Object.create(mongoose.SchemaType.prototype);
PolygonType.prototype.cast = function(val) {
if (!val) return null;
if (val instanceof Polygon) return val;
return new Polygon(val)
}
PolygonType.prototype.default = function(val) {
return new Polygon(val);
}
我如何保证:
每次从 db (mongoose init ) 中“水合”一个新对象时,我都会有一个 Polygon 实例而不是普通对象。我知道它将使用该
cast
功能。assert(model.polygon instanceof Polygon)
每次我将保存我的模型时,Polygon 属性都应该被编码并存储为一个普通的对象表示(
Polygon.prototype.toObject()
),在这种情况下它是Array
mongodb 中的一个对象。- 如果我使用
model.toObject()
它,它将递归调用model.polygon.toObject()
以获得文档的完整纯对象表示。