当前位置: 首页 > 知识库问答 >
问题:

react-instantsearch-dom:: 失败的道具类型:无效的道具'hitComponent'类型'对象'提供给'命中',预期'功能'

李谦
2023-03-14

我已经为“Hit”创建了一个类组件,并将其添加到另一个使用angolia react instantsearch“Hits”的文件中。检查此代码::

<Hits
    hitComponent={Hit}
    className="mb-30"
    showLoadingIndicator
/>

但给了我一个警告:

警告:失败的道具类型:提供给点击次数对象类型的无效道具命中组件,预期的功能

我不能将“命中”转换为功能组件。在这里,我如何使用类组件值作为函数?


共有1个答案

彭英逸
2023-03-14

不确定,但您可以尝试以下操作:只需在其周围包装一个函数。。返回组件的函数

hitComponent={(props) => <Hit {...props} />}

   functions _Hit(props)
    {
    return <Hit {...props} />
    }
     hitComponent={_Hit}
 类似资料: