在线等,挺急的!react如何不再使用三目运算各位有什么建议?

之前看了篇文章说react使用一个库就可以不再使用三目运算了,但是现在忘了怎么写的了
潇潇雨雨
浏览 380回答 2
2回答

POPMUISE

react-ifconstrenderData=(data)=>{valcomputed=/*expensivecomputation*/returnHereistheresult:{computed};};constFoo=({data})=>({()=>renderData(data)}NothingtoseehereNobearsthis.props.bears.length}>Emptybearsarray//Displaybears)

慕沐林林

自定义一个组件就好了classContainerextendsReact.Component{render(){if(!this.props.condition){returnnull;}returnthis.props.children;}}Container.propTypes={condition:ReactTypes.bool};使用classUserextendsReact.Component{render(){return(未登录已登录);}}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript