📌  相关文章
📜  mongodb mongoose 推入嵌套数组 - 任何代码示例

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

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