本机反应 - 如何在构造函数中使用状态

时间:2017-08-02 08:52:56

标签: javascript android ios react-native

我想在其他州的定义中使用州,但我没有任何价值 有没有人有任何想法?

constructor(props) {

    super(props);

    this.state = {

        check : false,
        datatotal : this.props.services.map((d) =>
            <CheckBox
                center
                title={d}
                checkedIcon='dot-circle-o'
                uncheckedIcon='circle-o'
                checked= {true}
                onPress={() => this.checkBoxClick()}
            />
    )

    };


}

2 个答案:

答案 0 :(得分:0)

嘿结帐此链接可能会对您有所帮助:https://www.tutorialspoint.com/react_native/react_native_state.htm

答案 1 :(得分:0)

您可以在Component

中使用它
 constructor(props){
 super(props);
  this.state = {
     check: false
   } 
} 

render() {
 <View>
 {this.props.services && this.props.services.map(
  <CheckBox
            center
            title={d}
            checkedIcon='dot-circle-o'
            uncheckedIcon='circle-o'
            checked= {true}
            onPress={() => this.checkBoxClick()}
        />
  )</View>}
}