gpt4 book ai didi

javascript - 如何在 react 中将组件作为 Prop 传递给 Prop ?

转载 作者:行者123 更新时间:2023-11-30 20:27:58 26 4
gpt4 key购买 nike

我正在使用来自 dev-express 的 react-grid 库,库中有一个 Table 组件,我们可以将 Cell 组件传递给它,在 CustomCell 中,我正在使用 Material UI 中的菜单

  <Table
columnExtensions={tableColumnExtensions}
cellComponent= {CustomCell}
/>

在上述情况下,菜单工作正常,

但我想将 props 传递给这个组件,我尝试了以下操作

 <Table
columnExtensions={tableColumnExtensions}
cellComponent= {(props)=><CustomCell {...props} someFunc={this.someFunc} />}
/>

在这种情况下 Menu 不起作用,我想知道是否有其他方法可以实现第二种情况。

最佳答案

你可以用 withProps 来做到这一点:

const CustomCellWithSomeFunc = withProps({someFunc: this.someFunc.bind(this)})(CustomCell);

<Table
columnExtensions={tableColumnExtensions}
cellComponent= {CustomCellWithSomeFunc/>}
/>

关于javascript - 如何在 react 中将组件作为 Prop 传递给 Prop ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50676818/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com