我有一个像这样的嵌套查询
{
"fields" : ["title","wordCount"],
"query":{
"bool":{
"should":[
{
"match":{
"title":{
"query": searchTerm,
"operator": "and"
}
}
},
{
"match_phrase" :{
"postHtml":{
"query" : searchTerm,
"slop" : 1
}
}
},
{
"match":{
"caption" : searchTerm
}
}
]
}
}
}
有没有办法知道标题或postHtml是否匹配?