为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

潇潇雨雨 2019-08-11 15:12:17
之前看了篇文章说react使用一个库就可以不再使用三目运算了,但是现在忘了怎么写的了
查看完整描述

2 回答

?
POPMUISE

TA贡献1765条经验 获得超5个赞

react-if
constrenderData=(data)=>{
valcomputed=/*expensivecomputation*/
returnHereistheresult:{computed};
};
constFoo=({data})=>(
{()=>
renderData(data)
}
Nothingtoseehere
Nobears
this.props.bears.length}>
Emptybearsarray
//Displaybears
)
                            
查看完整回答
反对 回复 2019-08-11
?
慕沐林林

TA贡献2016条经验 获得超9个赞

自定义一个组件就好了
classContainerextendsReact.Component{
render(){
if(!this.props.condition){
returnnull;
}
returnthis.props.children;
}
}
Container.propTypes={
condition:ReactTypes.bool
};
使用
classUserextendsReact.Component{
render(){
return(
未登录
已登录
);
}
}
                            
查看完整回答
反对 回复 2019-08-11
  • 2 回答
  • 0 关注
  • 379 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信