📅  最后修改于: 2022-03-11 14:57:35.096000             🧑  作者: Mango
db.collection.updateOne(
{ "_id": ID, "playlists._id": "58"},
{ "$push":
{"playlists.$.musics":
{
"name": "test name",
"duration": "4.00"
}
}
}
)