我遇到了一个问题,我想给customCompontent提供一些属性。
我有一个反应组件scoutingList,它打印了当前被侦察的玩家列表。也可以通过单击按钮从该列表中删除播放器。
我还有一个平板组件,其中表填充了来自api调用的数据,除了此列的scout列我创建了一个customComponent。
return (
<Griddle
columns={["scout", "name", "club", "position", "points", "rpoints", "avgpoints", "value"]}
results={this.state.data}
/>
)
这个customComponent应该呈现一个带有文本&#34; Scout&#34;的按钮。或&#34; Scouted&#34;。
从我的父类我传递状态this.state.scoutedPlayers
我要传递给我的customComponent。我发现你可以通过customComponentMetaData传递额外的数据,但它不接受道具。
任何人都知道如何通过customComponent直接传递属性?