如何编写MongoDB请求?

时间:2019-06-29 09:55:01

标签: mongodb

以下是类型文档的示例:

{
    id: 't-123'
    attributes: [
       {
          id: 'a-1',
          type: 'INPUT'
       },
       {
          id: 'a-2',
          type: 'SELECT',
          option: [
             {key: 'DE', label: 'Germany'},
             {key: 'US', label: 'United States'}
          ]
       }
    ]
}

此外,我有一个表单集合,该表单集合引用类型集合并存储用户的所有填充字段。

以下是表单文档的示例:

{
    id: 'f-1',
    type: 't-123',
    values: [
      {attribute: 'a-1', value: 'my random string'},
      {attribute: 'a-2', value: 'DE'} 
    ]
}

现在,我正在尝试查询表单集合,并自动为类型为SELECT的字段从类型集合中添加选择的键/标签对象。

这是我想要的结果:

{
    id: 'f-1',
    type: 't-123',
    values: [
      {attribute: 'a-1', value: 'my random string'},
      {attribute: 'a-2', value: {key:'DE', label:'Germany'}} 
    ]
}

0 个答案:

没有答案