message(){ if(this.state.isShow){ return (<span>显示</span>) }else{ return (<span>隐藏</span>) } } render(){ return( <div> {this.message()} </div> ) }