ReactNative 개발-시스템 팝 업 상자

ReactNative 개발-시스템 팝 업 상자
Alter 구성 요소 가 져 오기
import {Alert} from 'react-native'

경고 사용
Alert.alert(
    "        ",
    "        ",
    [
        {text: 'ask me later'},
        {text: '  ', onPress: this.userCanceled},
        {text: '  ', onPress: this.userConfirmed}
    ],
    {cancelable: true}
);

이.userCanceled 와 this.userCanceled 는 현재 구성 요소 가 정의 하 는 방법 입 니 다.
userConfirmed() {
    this.setState((state) => {
        return {needToConfirm: false};
    });

    //    
    this.props.navigation.navigate('Waiting', {
        phoneNumber: this.state.inputedNum, userPw: this.state.inputedPW,
    });
}

userCanceled() {
    this.setState((state) => {
        return {needToConfirm: false};
    });
}

주의 하 다.
만약 우리 의 대조 방법 이 this.setState 를 호출 하여 자신 을 업데이트 한다 면 오류 가 있 을 수 있 습 니 다.호출 할 때 this 는 우리 의 구성 요 소 를 가리 키 지 않 기 때 문 입 니 다.그래서 우 리 는 자신의 구성 요소 의 구조 방법 에서 자신의 this 를 bind 하 는 것 이 좋 습 니 다.
예 를 들 면:

export default class Register extends Component {

    static navigationOptions = {
        title: '    '
    }

    constructor(props) {
        super(props);
        this.userConfirmed = this.userConfirmed.bind(this);
        this.userCanceled = this.userCanceled.bind(this);
    }

좋은 웹페이지 즐겨찾기