3
MongoDB - Aktualizuj obiekty w tablicy dokumentu (aktualizacja zagnieżdżona)
Załóżmy, że mamy następującą kolekcję, o której mam kilka pytań: { "_id" : ObjectId("4faaba123412d654fe83hg876"), "user_id" : 123456, "total" : 100, "items" : [ { "item_name" : "my_item_one", "price" : 20 }, { "item_name" : "my_item_two", "price" : 50 }, { "item_name" : "my_item_three", "price" : 30 } ] } 1 …
204
mongodb