0

我有以下文档结构:

{
  "some_field": "some_data",
  "entries": {
    {"id": "some_id", "type": "some_type", "value": "some_value"},
    {"id": "another_id", "type": "another_type", "value": {"foo": 1, "bar": "two"}
  }
}

所以我想根据“类型”字段映射条目。我应该使用哪种映射类型或标志?或者也许我需要改变我的文档结构?

4

1 回答 1

1

你能用这个吗

{
   "some_field":"some_data",
   "entries":[{
         "id":"some_id",
         "type":"some_type",
         "value":"some_value"
      },
      {
         "id":"another_id",
         "type":"another_type",
         "value":{
            "foo":1,
            "bar":"two"
         }
      }]
}
于 2013-07-08T13:18:12.487 回答