我正在尝试在析取的构面键上添加addExcludeRefinement(facet,value),但是实现不允许这样做。

if (!this.isConjunctiveFacet(facet)) {
  throw new Error(facet + ' is not defined in the facets attribute of the helper configuration');
}

我该如何做而不必修改属性excludesacets本身?

最佳答案

负构面只能与联合构面一起使用。但是,您可以使用参数中的filters属性对排除项进行硬编码。我做了一个jsFiddle来演示:https://jsfiddle.net/bobylito/ef4615hk/

关于algolia - 如何在析取方面添加ExcludeRefinement?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45933787/

10-12 12:35