讓我們首先創(chuàng)建一個包含文檔的集合 –
> db.removingAnArrayElementDemo.insertOne({"UserMessage":["Hi","Hello","Bye"]}); { "acknowledged" : true, "insertedId" : ObjectId("5cef97bdef71edecf6a1f6a4") }
登錄后復(fù)制
借助 find() 方法顯示集合中的所有文檔 –
> db.removingAnArrayElementDemo.find().pretty();
登錄后復(fù)制登錄后復(fù)制
輸出
{ "_id" : ObjectId("5cef97bdef71edecf6a1f6a4"), "UserMessage" : [ "Hi", "Hello", "Bye" ] }
登錄后復(fù)制
以下是從 MongoDB 中刪除數(shù)組元素的查詢 –
> db.removingAnArrayElementDemo.update( {_id:ObjectId("5cef97bdef71edecf6a1f6a4")}, { "$pull": { "UserMessage": "Hello" } } ); WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
登錄后復(fù)制
讓我們再檢查一下文檔:
> db.removingAnArrayElementDemo.find().pretty();
登錄后復(fù)制登錄后復(fù)制
輸出
{ . "_id" : ObjectId("5cef97bdef71edecf6a1f6a4"), "UserMessage" : [ "Hi", "Bye" ] }
登錄后復(fù)制
以上就是使用 update() 和 $pull 從 MongoDB 集合中刪除數(shù)組元素的詳細(xì)內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!