如何根据 React Native 中的条件渲染元素?
这就是我尝试的方式:
render() {
return (
<Text>amount is: {this.state.amount}</Text> // it correctly prints amount value
</Button>
{this.state.amount} >= 85 ? <button>FIRST</button> : <button>SECOND</button>
<Text>some text</Text>
);
}
但出现此错误消息:
Expected a component class, got [object Object]
你放错了}
:
render() {
return (
<Text>amount is: {this.state.amount}</Text>
{this.state.amount >= 85 ? <button>FIRST</button> : <button>SECOND</button>}
<Text>some text</Text>
);
}
请记住,您必须将所有内容包装在视图中。
render() {
return (
<View>
<Text>amount is: {this.state.amount}</Text>
{this.state.amount >= 85 ?
<button>FIRST</button> : <button>SECOND</button>
}
<Text>some text</Text>
</View>
);
}