之前看了篇文章说react使用一个库就可以不再使用三目运算了,但是现在忘了怎么写的了
2 回答
POPMUISE
TA贡献1765条经验 获得超5个赞
react-ifconstrenderData=(data)=>{valcomputed=/*expensivecomputation*/returnHereistheresult:{computed};};constFoo=({data})=>({()=> renderData(data)} Nothingtoseehere Nobearsthis.props.bears.length}> Emptybearsarray //Displaybears)
慕沐林林
TA贡献2016条经验 获得超9个赞
自定义一个组件就好了classContainerextendsReact.Component{render(){if(!this.props.condition){returnnull;}returnthis.props.children;}}Container.propTypes={condition:ReactTypes.bool};使用classUserextendsReact.Component{render(){return( 未登录 已登录);}}
添加回答
举报
0/150
提交
取消