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()}
/>
)
};
}
'他の状態の定義の状態を使用しますが、私は何も得るの内側にこれを使用することができます[値] 、 どういう意味ですか?詳しく説明できますか? – Val