gpt4 book ai didi

javascript - 在 React 中使用变量渲染组件

转载 作者:行者123 更新时间:2023-12-04 00:51:44 25 4
gpt4 key购买 nike

我有一个列表 react-icons通过“卡片组件”中的 Prop 。在我的 Card 组件的渲染方法中,我有这样的东西:

render() {
...
{
this.props.icons.map(icon => {
return (
<div className="icon-square">
/* What should I do here so I render the "icon" variable" */
</div>
)
})
}
}

注意:该列表由 React 组件本身的 react-icons 组成。
我尝试了很多东西,但我无法弄清楚如何渲染图标。如果有人可以帮助我,那就太棒了。谢谢

最佳答案

如果图标是 react 组件,则:

this.props.icons.map(Icon => {
return (
<div className="icon-square">
<Icon/>
</div>
)
})

关于javascript - 在 React 中使用变量渲染组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65816143/

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