0
如何在狀態改變的條件下加載我的React工具欄組件?如何有條件地加載我的React組件?
constructor(props) {
super(props);
this.state = {
currentpagenum: 0,
};
}
render(){
return(
<View>
{this.state.currentpagenum!==0 ? this.getToolbar(): null;}
</View>
);
}
getToolbar(){
return(
<ToolbarAndroid />
);
}
什麼是你空後得到 –
意外的標記 – jsky
刪除分號結束 –