Mongodb Wie aktualisiere ich das Antwortarray (Hinzufügen und Löschen) der angegebenen _id in Kommentaren?
{ "_id" : ObjectId("595111698cce5d034f60ae79"), "title" : "Flower ribbon H skirt", "desc" : "간딘스키 작품같은 느낌의 플라워 프린팅\n\n앞면은 랩 스커트 느낌이 연출되고\n뒷면은 밴딩으로 되어 있어\n66사이즈이신 분까지 착용가능한데요\n", "createTime" : "Mon Jun 26 2017 21:51:37 GMT+0800 (CST)", "comments" : [ { "_id" : ObjectId("5959f338c465d90f75d8544d"), "comment" : "qeqweqwe", "replys" : [ ], "createTime" : ISODate("2017-07-03T07:33:12.072Z") }, { "_id" : ObjectId("5959f756034ffb103ea3bf41"), "comment" : "qweqweq", "replys" : [ ], "createTime" : ISODate("2017-07-03T07:50:46.642Z") } ] }
想不出来能直接操作文档的办法,因为不知道要操作的 comment 在数组中的位置。
可以先找到这个 doc,拿到对象,然后对 comments 进行操作(纯 JavaScript),再去更新文档。
也可以考虑把 comments 分表存放,操起来更容易。