这是我的模特
const mongoose = require("mongoose");
const shortid = require("shortid");
const { v4: uuidv4 } = require("uuid");
const PollSchema = new mongoose.Schema({
id: {
type: String,
default: shortid.generate
},
question: {
type: String
},
options: [
{
option: {
type: String
},
votes: {
type: Number,
default: 0
},
uid: {
type: String,
default: uuidv4
}
}
],
created: {
type: Date,
default: Date.now
}
});
module.exports = Poll = mongoose.model("poll", PollSchema);
我需要通过uid搜索民意调查,并将投票数增加1。 这是我尝试过的方法,它不起作用:
Poll.findOneAndUpdate(
{ options: { $elemMatch: { uid: optionId } } },
{ $inc: { "options.$.votes": 1 } },
{ new: true }
);
数据库中没有更新,我不确定为什么。我提供的搜索uid的var是optionId。
答案 0 :(得分:2)
对于1级嵌套,不需要使用arrayFilters
,所以应该可以使用:
Poll.findOneAndUpdate({ _id: yourId, "options.uid": optionId }, { $inc: { "options.$.votes": 1 }, { new: true } })
答案 1 :(得分:1)
请您尝试以下代码:
Poll.findOneAndUpdate(
{ _id: id }, //that is poll id
{
$inc: { [`options.$[outer].votes`]: 1 }
},
{
arrayFilters: [{ "outer.uid": optionId }],
new: true
},
function(err, poll) {
if (!err) {
console.log(poll);
}
}
);