内のすべてのフィールドを取得する:これまでのところ、成功せずが<a href="https://www.elastic.co/guide/en/elasticsearch/reference/1.7/search-request-fields.html#search-request-fields" rel="nofollow">documentation of ElasticSearch 1.7</a>による弾性1.7
{
"fields" : ["*"],
"query" : {
"term" : { "user" : "kimchy" }
}
}
:
したがってFields: Allows to selectively load specific stored fields for
each document represented by a search hit.
{
"fields" : ["user", "postDate"],
"query" : {
"term" : { "user" : "kimchy" }
}
}
* can be used to load all stored fields from the document.
、私はすべてのフィールドを取得するには、以下を試してみました。
を削除します。 '_source'フィールドにすべてのフィールドがあります。 – Val