1

我的 elasticsearch DSL 有一个问题,在使用分面导航时,当我应用我的分面过滤器时,下一组结果不包含任何其他分面,即使我已经要求它们。

当我进行初始搜索时,我得到了我想要的结果:

{
"sort": {
    "_score": {},
    "salesQuantity": {
        "order": "asc"
    }
},
"query": {
    "filtered": {
        "query": {
            "match": {
                "categoryTree": "D01"
            }
        },
        "filter": {
            "term": {
                "publicwebEnabled": true,
                "parentID": 0
            }
        }
    }
},
"facets": {
    "delivery_locations": {
        "terms": {
            "field": "delivery_locations",
            "all_terms": true
        }
    },
    "categories": {
        "terms": {
            "field": "categoryTree",
            "all_terms": true
        }
    },
    "collectable": {
        "terms": {
            "field": "collectable",
            "all_terms": true
        }
    }
},
"from": 0,
"size": 12}

然后当我像这样应用过滤器时,我得到的结果不包括方面:

{
"sort": {
    "_score": {},
    "salesQuantity": {
        "order": "asc"
    }
},
"query": {
    "filtered": {
        "query": {
            "match": {
                "categoryTree": "D01"
            }
        },
        "filter": {
            "term": {
                "publicwebEnabled": true,
                "parentID": 0
            },
            "or": [
                {
                    "range": {
                        "Retail_Price": {
                            "to": "49.99",
                            "from": "0"
                        }
                    }
                }
            ]
        }
    }
},
"facets": {
    "delivery_locations": {
        "terms": {
            "field": "delivery_locations",
            "all_terms": true
        }
    },
    "categories": {
        "terms": {
            "field": "categoryTree",
            "all_terms": true
        }
    },
    "collectable": {
        "terms": {
            "field": "collectable",
            "all_terms": true
        }
    }
},
"from": 0,
"size": 12}

注意,我在上面添加了 OR 过滤器 - 因为用户可以选择多个价格范围进行过滤。

难道我做错了什么?

我希望返回新的方面,因为改变价格显然会改变其他方面的方面数量......

4

1 回答 1

0

在 or 过滤器中添加原始术语过滤器,或添加另一个布尔过滤器以将整个过滤器包装在布尔表达式中。我不认为你可以像这样用逗号分隔它们来添加这两个过滤器。

于 2013-03-12T06:41:59.590 回答