也许是时候了,也许是我沉浸在稀疏的文档中而无法理解 Mongoose 中更新的概念:)
这是交易:
我有一个联系模式和模型(缩短的属性):
var mongoose = require('mongoose'),
Schema = mongoose.Schema;
var mongooseTypes = require("mongoose-types"),
useTimestamps = mongooseTypes.useTimestamps;
var ContactSchema = new Schema({
phone: {
type: String,
index: {
unique: true,
dropDups: true
}
},
status: {
type: String,
lowercase: true,
trim: true,
default: 'on'
}
});
ContactSchema.plugin(useTimestamps);
var Contact = mongoose.model('Contact', ContactSchema);
我收到来自客户的请求,其中包含我需要的字段并因此使用我的模型:
mongoose.connect(connectionString);
var contact = new Contact({
phone: request.phone,
status: request.status
});
现在我们遇到了问题:
- 如果我打电话给
contact.save(function(err){...})
我会收到一个错误,如果具有相同电话号码的联系人已经存在(正如预期的那样 - 唯一) - 我无法
update()
联系,因为文档中不存在该方法 - 如果我对模型调用 update:
Contact.update({phone:request.phone}, contact, {upsert: true}, function(err{...})
我会进入某种无限循环,因为 Mongoose 更新实现显然不希望将对象作为第二个参数。 - 如果我也这样做,但在第二个参数中,我传递了一个
{status: request.status, phone: request.phone ...}
它工作的请求属性的关联数组- 但是我没有对特定联系人的引用,也无法找到它的createdAt
和updatedAt
属性。
所以最重要的是,毕竟我尝试过:给定一个文档contact
,如果它存在,我如何更新它,或者如果它不存在,我如何添加它?
谢谢你的时间。