在mongodb中的嵌套字段中更新数组中的文档

时间:2020-01-17 21:23:11

标签: node.js mongodb

我在收藏集中有以下内容:

{_id: 111111111,
 contacts: [
    {_id: 0,
     name: test0,
     email: email0
    },

    {_id: 1,
     name: test1,
     email: email1
    }
 ]

现在,我想更新test1的电子邮件。我首先找到ID为111111111的文档。此后如何搜索特定的包含?

0 个答案:

没有答案