繁体   English   中英

有条件地渲染组件

[英]Conditionally rendering a component

const TABS = [
  {
    component: Home,
    label: "Home",
    isActive: true
  },
  {
    component: About,
    label: "About",
    isActive: false
  },
  {
    component: Contact,
    label: "Contact",
    isActive: false
  }
];

...
render() {
  return (
    {TABS.map(({ component, isActive}) => isActive ? /* how do i do it? */ : "false" )}
  )
}

我不确定如何渲染组件,因为无论我做什么似乎都会导致错误。 我是 React 的新手,因此感谢您的任何帮助。

谢谢!

你可以这样做:

render() {
  return (
    {TABS.map(({ component, isActive}) => isActive ? <component /> : null )}
  )
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM