我正在将MongoDB与Java驱动程序版本3.8.2结合使用。 我有一个包含购物清单的MongoDB集合。购物清单的格式为
"_id" : { "$oid" : "5bb3b97db4615131ccd21995"} ,
"name" : "myCart" ,
"items" : [ { "description" : "Milk" , "quantity" : 1} ,
{ "description" : "Eggs" , "quantity" : 3}]
"_id" : { "$oid" : "5bb3bf57b4615153006a2d4d"} ,
"name" : "secondCart" ,
"items" : [ { "description" : "Water" , "quantity" : 5} ,
{ "description" : "Beef" , "quantity" : 4}]
我想实现一个功能,以获取购物车名称,商品和数量,并更新购物车中该商品的数量。
例如-update(“ myCart”,“ Milk”,5)会将“ myCart”中的Milk数量更改为5
我应该怎么做?
谢谢您的帮助!