gpt4 book ai didi

node.js - 使用 mongoose 更新 mongodb 记录中的数组

转载 作者:可可西里 更新时间:2023-11-01 09:18:01 26 4
gpt4 key购买 nike

更新保存在 mongodb 记录中的数组中的值的最佳方法是什么?目前,我正在尝试这种方式:

Record.find({ 'owner': owner}, {}, {sort: { date: -1 }}, function(err, record){
if(!err){
for (var i = 0; i < record[0].array.length; i++){
record[0].array[i].score = 0;

record[0].array[i].changed = true;

record[0].save();
}
}
});

模式看起来像这样:

var recordSchema = mongoose.Schema({
owner: {type: String},
date: {type: Date, default: Date.now},
array: mongoose.Schema.Types.Mixed
});

现在,我可以看到数组更新,保存时没有错误,但是当我再次查询数据库时,数组还没有更新。

最佳答案

如果您在此处解释您的意图将会有所帮助,因为将属性命名为“数组”并不能传达其目的。我猜从您的代码中您希望将那里每个项目的分数设置为零。请注意,您的保存当前被忽略,因为您只能保存顶级 mongoose 文档,而不能保存嵌套文档。

数组上的某些查找和修改操作可以使用 Array Update Operators 的单个数据库命令完成。像 $push$addToSet 等。但是我没有看到任何运算符可以直接在单个操作中进行所需的更改。因此我认为您需要找到您的记录,更改数组日期并保存它。 (注意 findOne 是一个方便的函数,如果您只关心第一个匹配项,您可以使用它,这对您来说似乎就是这种情况)。

Record.findOne({ 'owner': owner}, {}, {sort: { date: -1 }}, function(err, record){
if (err) {
//don't just ignore this, log or bubble forward via callbacks
return;
}
if (!record) {
//Record not found, log or send 404 or whatever
return;
}
record.array.forEach(function (item) {
item.score = 0;
item.changed = true;
});
//Now, mongoose can't automatically detect that you've changed the contents of
//record.array, so tell it
//see http://mongoosejs.com/docs/api.html#document_Document-markModified
record.markModified('array');
record.save();
});

关于node.js - 使用 mongoose 更新 mongodb 记录中的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17865081/

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