State란 글로벌 변수같은 것
예제
class App extends Component{
constructor(props) {
super(props);
this.state = {
address : ''
}
}
writeAddress = () => {
this.setState({
address : "경기도 수원시"
}, function(){
alert('주디얌');
})
}
writeReset = () => {
this.setState({
address : ""
})
}
render(){
return (
<View style = {styles.container}>
<Text style = {styles.hello}>SPONGE 화이팅하자구</Text>
<JUDY type = 'one'/>
<JUDY type = 'two'/>
<Text> {this.state.address}</Text>
<Button title = {'나의 주소 출력'} onPress={this.writeAddress}/>
<Button title = {'리셋'} onPress={this.writeReset}/>
</View>
);
}
};
반응형
'STUDY > Front' 카테고리의 다른 글
#3 레이아웃 : Flex, FlexDirection, alignItems (0) | 2021.07.23 |
---|---|
React-native #1) Props란? (0) | 2021.07.22 |
React-native 셋팅하기 (Window OS) (0) | 2021.07.20 |
javascript) 배열값 중에서 최대값과 최소값 찾는 방법 (0) | 2019.04.17 |
jquery) name 지정자 가져오기 / 동일 name 여러개 가져오기 (0) | 2019.04.17 |