我存儲在MongoDB中這樣如何更新MongoDB的數組值
"Fiction" : [
{
"SNo": "1",
"authorName" : "Enid Blyton",
"bookName" : "Secret series",
"Amount" : 115
},
{
"SNo": "2",
"authorName" : "Enid Blyton",
"bookName" : "Mystery series",
"Amount" : 150
}
]
我想量更新來自115
到135
文檔。
我試圖更新像這樣的值。
db.fiction.update({"Fiction.SNo":"1"},{$set:{"Fiction.Amount":135}})
但我得到一個錯誤。
的錯誤是
cannot use the part (Fiction of Fiction.Amount) to traverse the element
任何人都可以在這方面的幫助,我需要實現這個從蟒蛇工作。
db.fiction.update({ 「斯諾」: 「1」},{$組:{ 「金額」:135}}) –