我有一个像这样的常用术语查询。
{
"query" : {
"common" : {
"DocumentData.OCR_Text" : {
"query" : "block 310 luis",
"cutoff_frequency" : 0.001
}
}
}
}
我想搜索2个或更多字段,但这会给我一个错误。
{
"query" : {
"common" : {
"Grantors" : {
"query" : "block 310 luis",
"cutoff_frequency" : 0.001
},
"DocumentData.OCR_Text" : {
"query" : "block 310 luis",
"cutoff_frequency" : 0.001
}
}
}
}
嵌套:ElasticsearchParseException [预期字段名称但得到了 START_OBJECT" DocumentData.OCR_Text"];
你会怎么做?
答案 0 :(得分:7)
你应该将它包装在Bool Query
中{
"query": {
"bool": {
"should": [
{
"common": {
"Grantors": {
"query": "block 310 luis",
"cutoff_frequency": 0.001
}
}
},
{
"common": {
"DocumentData.OCR_Text": {
"query": "block 310 luis",
"cutoff_frequency": 0.001
}
}
}
]
}
}
}