为什么React Native中的条件render()
被多次调用?
我的代码是这样的:
render(){
if (this.state.type === 'admin')
return(<Image />);
else
return null;
}
答案 0 :(得分:0)
您应该尝试这样:
render(){
return(
{this.state.type === 'admin'?<Image />:null}
)
}
希望它清楚。毫无疑问