有人可以帮我比较一下本机中的彩色对象吗? 通常,我会迅速这样做:
if aColorObj == UIColorClass.white{
aColorObj = UIColorClass.gray
}
如何在下面的本机反应中执行类似操作:
onPressLearnMore() {
this.setState = {
/*
how to write this:
if mbackgroundColor == 'white'{
mbackgroundColor = 'red'
}else if mbackgroundColor == 'gray'{
mbackgroundColor = 'white'
}
*/
};
}
谢谢:)
答案 0 :(得分:1)
这里最简单的解决方案也是,将初始背景色保存在一个状态中,并具有可用于与颜色进行比较的颜色对象。
const Colors = {
Grey: '#DCDCDC',
White: '#FFFFFF',
Blue: '#0000FF',
Black: '#000000',
};
state = {
backgroundColor: Colors.White,
};
<View
style={[
styles.container,
{ backgroundColor: this.state.backgroundColor }, // set background color here from state
]}>
然后您可以使用一个功能来检查背景色。
checkBackgroundColor = () => {
if (this.state.backgroundColor === Colors.Blue) {
console.log("It's blue");
this.setState({
backgroundColor: Colors.White,
});
}
....
};