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

萌新求教!react如何不再使用三目运算

萌新求教!react如何不再使用三目运算

墨色风雨 2019-07-27 00:20:09
之前看了篇文章说react使用一个库就可以不再使用三目运算了,但是现在忘了怎么写的了
查看完整描述

2 回答

?
ABOUTYOU

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

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

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

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

添加回答

举报

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