设置状态时如何比较原生反应中的颜色对象

问题描述 投票:-1回答:1

有人可以帮我比较反应原生的颜色对象。一般来说,我会这样做:

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'
      } 
    */
  };
}

谢谢 :)

react-native conditional state
1个回答
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,
    });
  }
  ....
};

snack example

© www.soinside.com 2019 - 2024. All rights reserved.