我想让用户检查他们是否“购买”了杂货并更新数据库。
更具体地说,当用户选中一个框时,我想在成分对象上切换布尔属性acquired
。成分存储在GroceryList
文档上的数组中:
这是杂货清单的架构
const GroceryListSchema = mongoose.Schema({
createdAt : { type: Date, default: Date.now },
updatedAt : { type: Date },
ingredients : { type: Array },
recipes : { type: Array },
user : { type: mongoose.Schema.Types.ObjectId, ref: 'UserSchema', required: true },
}
一种成分看起来像这样:
{ quantity: '3',
unit: null,
ingredient: 'zucchinis, chopped',
minQty: '3',
maxQty: '3',
acquired: false }
我看过很多类似的问题,Mongoose文档和MongoDB文档,我尝试了很多不同的版本,但我感到很困惑。
前端:
function toggleIngredient(elmt, groceryListId, ingrIdx) {
$.post('/cart/grocery-list/toggleIngredient', {
groceryListId,
ingrIdx,
newValue: elmt.checked, // if checkbox was checked before toggling it
})
.then((res) => {
console.log(res);
})
.catch((err) => {
console.log(err);
});
}
后端:
app.post('/cart/grocery-list/toggleIngredient', (req, res, next) => {
const { groceryListId, ingrIdx, newValue } = req.body;
GroceryListSchema.findById(groceryListId, (err, groceryList) => {
if (err) return next(err);
// if was unchecked, change to checked & vice-versa
groceryList.ingredients[ingrIdx].acquired = newValue;
// save updated grocery list
groceryList.save().then((updatedList) => {
console.log(updatedList.ingredients);
}).catch(error => next(error));
});
});
结果/问题:
当我运行上面的代码时,我成功地在回调中从acquired
-> false
切换到1个成分的true
属性
console.log(updatedList.ingredients);
但是,下次我获取购物清单时,该成分是acquired = false
。这使我相信GroceryList
文档实际上并没有在数据库中得到更新。我该如何解决?
答案 0 :(得分:1)
如果直接使用数组元素的索引修改数组元素,猫鼬将无法跟踪数组内部的变化
在保存之前尝试添加此行
groceryList.markModified(`ingredients.${ingrIdx}.acquired`);