gpt4 book ai didi

node.js - 创建使用 Mongoose 更新和保存文档的方法?

转载 作者:IT老高 更新时间:2023-10-28 11:06:35 24 4
gpt4 key购买 nike

查看 official documentation 后,我仍然不确定如何在 mongoose 中创建用于创建和更新文档的方法。

那么我该怎么做呢?

我有这样的想法:

mySchema.statics.insertSomething = function insertSomething () {
return this.insert(() ?
}

最佳答案

在静态方法中,您还可以通过以下方式创建新文档:

schema.statics.createUser = function(callback) {
var user = new this();
user.phone_number = "jgkdlajgkldas";
user.save(callback);
};

关于node.js - 创建使用 Mongoose 更新和保存文档的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8987851/

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