提供给ReactiveComponent的object对象,预期的function。

时间:2019-06-27 09:54:49

标签: javascript reactjs reactivesearch

尝试将ReactiveSearch用于搜索栏时出现此错误。这是我的初始化方式:

render() {
    const { tenantConfig, size, componentId } = this.props;
    return (
      <ReactiveComponent
        componentId={componentId}
        defaultQuery={this.defaultQuery}
      >
        <SearchDropdownDashboard
          size={size}
          handleSearchDashboard={this.handleSearchDashboard}
          fetching={this.state.fetching}
          tenantConfig={tenantConfig}
        />
      </ReactiveComponent>
    );
  }

这是传入的函数:

defaultQuery = () => {
    const { dashboardText } = this.state;
    const { mustNotObj } = this.props;

    let obj;

    obj = {
      query: {
        bool: {
          must_not: mustNotObj,
          must: multiMatchSearch(dashboardText)
        }
      },
      from: 0,
      size: 20
    };

    return obj;
  };

关于我在这里做错什么的任何建议吗?该功能似乎已正确传递给组件。

1 个答案:

答案 0 :(得分:1)

如果您使用的是v3,那是由于API中引入了最近的更改。您将需要使用render prop或React渲染模式,如以下示例所示。

您可以在此处查看文档:{​​{3}}。

我已经在两个版本上创建了使用ReactiveComponent的示例:

v3https://opensource.appbase.io/reactive-manual/advanced/reactivecomponent.html#usage-with-defaultquery

v2https://codesandbox.io/s/serene-ritchie-rjo3m

希望这会有所帮助!