当前,我正在使用一个函数来切换hasBeenClicked,然后使用一个条件来确保仅当hasBeenClicked为true时才更改背景颜色。我更喜欢在样式道具内使用三元运算符来处理逻辑。
let randomHex = () => {
let letters = '0123456789ABCDEF';
let color = '#';
for (let i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * 16)];
// console.log('here is your random hex color', color);
}
return color;
}
export default class App extends Component {
constructor() {
super()
this.state = {
hasBeenClicked: false
}
}
changeColor = () => {
this.setState({
hasBeenClicked: !this.state.hasBeenClicked
})
if (this.state.hasBeenClicked === true) {
this.setState({
backgroundColor: randomHex()
})
}
}
render() {
return (
<View style={[styles.container, { backgroundColor: this.state.backgroundColor }]}>
<TouchableOpacity
onPress={this.changeColor}
>
<Text style={styles.welcome}>
Welcome to React Native!
</Text>
</TouchableOpacity>
</View>
);
}
}
我尝试了
<View style={[styles.container, { backgroundColor: {this.state.hasBeenClicked: this.state.backgroundColor ? 'green'} }]}>
什么是更好的方法/正确的方法呢?
答案 0 :(得分:1)
您的三元数不正确:
{ this.state.hasBeenClicked : this.state.backgroundColor ? 'green'}
应该是
{ this.state.hasBeenClicked ? this.state.backgroundColor : 'green'}
答案 1 :(得分:0)
一种方法是用不同的背景颜色创建2个不同的CSS类。例如,
.red: {
background: 'red'
}
.blue: {
background: 'blue'
}
现在,在您的<View />
中,您可以根据this.state.hasbeenClicked
的值动态分配类。例如,
render(){
const className = this.state.hasBeenClicked ? 'blue' : 'red'
return(
<View className={className}>
// rest of your code
</View>
)
}