📌  相关文章
📜  嵌套数组中的 mongodb 推送元素 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:36.439000             🧑  作者: Mango

代码示例1
db.collection.update(
    { "_id": ID, "playlists._id": "58"},
    { "$push": 
        {"playlists.$.musics": 
            {
                "name": "test name",
                "duration": "4.00"
            }
        }
    }
)