我想在另一个状态的定义中使用一个状态,但我没有得到任何值(value)。
有人有什么想法吗??
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()}
/>
)
};
}
Best Answer-推荐答案 strong>
你可以在你的组件中使用它
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>}
}
关于javascript - react native - 如何在构造函数中使用状态,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/45456011/
|