0
私はchildrenDetailコンポーネントを持っています。それは、独自の状態を持っています。親のchildrenDetailコンポーネントは、forループを使用して複数回レンダリングします。私はクリックした保存ボタンの詳細kidsDetail情報のリストを取得したい。親コンポーネントの子状態コンポーネント値を取得する
ベローが、それは2人の状態の子供年齢と性別はとても親コンポーネントで取得します。この値が必要に
class RenderChildDetails extends Component {
state={
kidsAge: 0,
kidsGender: '',
}
constructor(props) {
super(props);
onClicked=this.onClicked;
//Call function when the back button is pressed in the page header.
}
onClicked=()=>{
console.log(" kid Age "+this.state.kidsAge);
}
render()
{
return(
<View style={{flexDirection:'row',flex:1}}>
<View style={{backgroundColor:'black',height:20,width:20,borderRadius:10,margin:5,alignItems:'center', padding: 1}}>
<Text style={{color:'white'}}>{this.props.ivalue}</Text>
</View>
<TouchableOpacity onPress={() =>{
ActionSheet.show(
{
options: AGE,
cancelButtonIndex: CANCEL_INDEX,
destructiveButtonIndex: DESTRUCTIVE_INDEX,
title: "Select Age"
},
buttonIndex => {
this.setState({ kidsAge: AGE[buttonIndex] });
}
)
}
}>
<View style={{flex:1,margin:5,flexDirection:'row'}} >
<Text>Age: {this.state.kidsAge}</Text>
<Image source={require('../../../Assets/Icons/Settings/Black_down.png')}
style={{height:11,width:11,margin:5}} />
</View>
</TouchableOpacity>
<TouchableOpacity onPress={() =>
ActionSheet.show(
{
options: GENDER,
cancelButtonIndex: CANCEL_INDEX,
destructiveButtonIndex: DESTRUCTIVE_INDEX,
title: "Gender"
},
buttonIndex => {
this.setState({ kidsGender: GENDER[buttonIndex] });
}
)}>
<View style={{flex:1,margin:5,flexDirection:'row'}}>
<Text>Gender: {this.state.kidsGender}</Text>
<Image source={require('../../../Assets/Icons/Settings/Black_down.png')}
style={{height:11,width:11,margin:5}} />
</View>
</TouchableOpacity>
</View>
);
}
}
export default RenderChildDetails;
あなたのコードをフォーマットしてください。 – topher