gpt4 book ai didi

node.js - Mongoose 模式/模型中的构造函数

转载 作者:IT老高 更新时间:2023-10-28 23:27:14 27 4
gpt4 key购买 nike

我是 Node.js、mongodb 和 mongoose 的新手。我想在创建新文档时传递一些参数。例如,这是创建新文档的典型示例:

var animalSchema = new Schema({ name: String, type: String });
var Animal = mongoose.model('Animal', animalSchema);
var dog = new Animal({ type: 'dog' });

我想做这样的事情:

var dog = new Animal( Array );

所以我想为一个新文档创建自定义构造函数。但我不知道在哪里以及如何在 mongoose 中设置像这样的自定义构造函数。

我有一个类似名称的 stackoverflow 帖子,但它似乎不是我想要的:Custom constructor function in Mongoose schema/models

也许我犯了一个愚蠢的错误。欢迎提出任何想法。

谢谢

最佳答案

Mongoose 不支持这种魔法。但是有一些解决方法可以解决这个问题。

定义一个静态函数:

在您的架构定义中,您可以定义一个静态函数来处理基于数组对象的所有模型的实例化,例如:

var animalSchema = new Schema({ name: String, type: String });
animalSchema.static({
createCollection: function (arr, callback) {
var colection = [];

arr.forEach(function (item) {
// Here you have to instantiate your models and push them
// into the collections array. You have to decide what you're
// going to do when an error happens in the middle of the loop.
});

callback(null, collection);
}
});

使用Model.create方法:

如果您真的不需要在保存模型实例之前对其进行操作,并且只想实例化并持久化到数据库,则可以使用 Model.create,它接受一个数组对象:

var animals = [
{ type: 'dog' },
{ type: 'cat' }
];
Animal.create(arr, function (error, dog, cat) {
// the dog and cat were already inserted into the db
// if no error happened
});

但是,如果你有一个大数组,回调会收到很多参数。在这种情况下,您可以尝试“概括”:

Animal.create(arr, function () {
// the error, if it happens, is the first
if (arguments[0]) throw arguments[0];
// then, the rest of the arguments is populated with your docs
});

使用Model.collection.insert:

如解释 in the docs ,它只是一个必须由驱动程序实现的抽象方法,因此它没有任何 Mongoose 处理,它可能会向您的集合添加意想不到的字段。至少,如果你传递一个对象数组,它会将它们持久化并返回一个带有填充方法的数组:

var animals = [
{ type: 'dog' },
{ type: 'cat' }
];
Animal.collection.insert(animals, function (error, docs) {
console.log(docs);
});

关于node.js - Mongoose 模式/模型中的构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15214836/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com