当我刚刚保存嵌套集合时,如何获取id?
代码:
(Topic = schemaname from mongoose)
Topic.findByIdAndUpdate({_id: data.topicId}, {data that im inserting in the nested collection})
更新主题并添加嵌套集合,同时带有id。 有没有办法返回插入的嵌套集合的id?
答案 0 :(得分:0)
尝试使用查询选项{new:true}
Topicopic.findByIdAndUpdate({_id: data.topicId}, {}, {new:true})