2017-08-02 11 views
1

他の状態の定義で状態を使用したいが、何も価値がない。
誰にもアイデアはありますか?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()} 
      /> 
    ) 

    }; 


} 
+0

'他の状態の定義の状態を使用しますが、私は何も得るの内側にこれを使用することができます[値] 、 どういう意味ですか?詳しく説明できますか? – Val

答えて

0

をあなたのコンポーネント

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>} 
} 
関連する問題