參考:https://www.exception.site/elasticsearch/elasticsearch-query-custom-columns文章來(lái)源:http://www.zghlxwxcb.cn/news/detail-504859.html
1、查詢特別值查詢,結(jié)果只返回指定字段
*** 只返回title、channel結(jié)果;下列兩種語(yǔ)法方式都可以文章來(lái)源地址http://www.zghlxwxcb.cn/news/detail-504859.html
{
"_source": [
"title",
"channel"
],
"query": {
"term": {"aid": "cfxa***253i1y"}
}
}
{
"_source": [
"title",
"channel"
],
"query": {
"query_string": {
"default_field": "aid",
"query": "cfx***53i1y"
}
}
}
2、查詢?nèi)繑?shù)據(jù),結(jié)果只返回指定字段
{
"_source": [
"title",
"channel"
],
"query": {
"match_all": { }
}
}
到了這里,關(guān)于Elasticsearch es查詢結(jié)果只返回指定篩選字段_source的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!