我正在尝试从购物车中删除,并在用户个人资料中更改数量信息:这是结构:
{
"_id": "3YmDfDWMAaoeQHPAJ",
"profile": {
"name": "Armin",
"wish": [
"FMXRAn3TEXCn6skSX",
"avRwogpGvJsKLLKfK",
"PJbRh68pwJrtnKe5c",
"mt2yqLecyTA2Ejd4n"
],
"cart": {
"mt2yqLecyTA2Ejd4n": "1",
"xqwfyqasfcyTA2ajd": "3",
"xL438DBQrNJTJbPmH": "5"
}
},
"username": "armin"
}
我尝试了以下操作,但它会删除整个购物车
let item = $(event.target).data('id');
Meteor.users.update(Meteor.userId(),{$unset: {"profile.cart": item}});
我的目标是能够更新值1,3,5。并且还可以从购物车中删除整个房产。
答案 0 :(得分:1)
要更新购物车中的属性值,请使用$set运算符,如以下查询中所示:
Meteor.users.update(
Meteor.userId(),
{$set: {"profile.cart.xL438DBQrNJTJbPmH": "10"}}
);
删除购物车中的属性:
Meteor.users.update(
Meteor.userId(),
{$unset: {"profile.cart.xL438DBQrNJTJbPmH": ""}}
);
$ unset表达式中的指定值(即"")不会影响操作。
如果必须动态构造属性的名称,可以使用其他变量:
var condition = {};
condition["profile.cart." + dynamicPart] = "";
Meteor.users.update(
Meteor.userId(),
{$unset: condition}
);