TypeError: TypeError: null не является объектом (оценка 'this.state.email') - PullRequest
0 голосов
/ 01 февраля 2019
export default class Login extends React.Component {
    static navigationOptions = {
        title: 'Welcome',
        header: null
    };
    constructor(props) {
        super(props);
        state = {
            email: "",
            password: ""
        }
    }
    handleEmail = (text) => {
        this.setState({
            email: text
        })
    }
    handlePassword = (text) => {
        this.setState({
            password: text
        })
    }
    validEmail = Email => {
            var email = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]  {
                2,
                4
            }) + $ /
        return email.test(Email)
}
onClickListener = (viewId) => {
    Alert.alert("Alert", "Button pressed " + viewId);
}
onSubmit() {
    if (this.state.email === "" || this.state.email === null) {
        alert("Email cannot be empty")
    } else if (!this.validEmail(this.state.email)) {
        alert("Enter valid Mail id")
    } else if (this.state.password === "" || this.state.password === null) {
        alert("Password cannot be empty")
    } else if (this.state.password.length < 6) {
        alert("Password should contain atleast 6 characters")
    } else {
        alert("success")
        this.props.navigation.navigate('ScrollTab');
    }
}
render() {
    return ( <
        View style = {
            styles.container
        } >
        <
        Text style = {
            styles.LogoText
        } > Blood Donation App < /Text> <
        View style = {
            styles.inputContainer
        } >
        <
        TextInput style = {
            styles.inputs
        }
        placeholder = "Email"
        keyboardType = "email-address"
        onChangeText = {
            (text) => this.handleEmail(text)
        }
        underlineColorAndroid = 'transparent' / >
        <
        Image style = {
            styles.inputIcon
        }
        source = {
            {
                uri: 'https://img.icons8.com/nolan/40/000000/email.png'
            }
        }
        /> <
        /View>     <
        View style = {
            styles.inputContainer
        } >
        <
        TextInput style = {
            styles.inputs
        }
        placeholder = "Password"
        secureTextEntry = {
            true
        }
        onChangeText = {
            (text) => this.handlePassword(text)
        }
        underlineColorAndroid = 'transparent' / >
        <
        Image style = {
            styles.inputIcon
        }
        source = {
            {
                uri: 'https://img.icons8.com/nolan/40/000000/key.png'
            }
        }
        /> <
        /View>      <
        TouchableOpacity style = {
            styles.btnForgotPassword
        }
        onPress = {
            () =>
            this.onClickListener('restore_password')
        } >
        <
        Text style = {
            styles.btnText
        } > Forgot your password ? < /Text> <
        /TouchableOpacity> <
        TouchableOpacity style = {
            [styles.buttonContainer,
                styles.loginButton
            ]
        }
        onPress = {
            () => this.onSubmit()
        } >>
        <
        Text style = {
            styles.loginText
        } > Login < /Text> <
        /TouchableOpacity>         <
        /View>
    );
}
}

// работает над проверками для электронной почты и пароля .. при прямом щелчке по отправке выдается ошибка, значение которой не определено.я должен установить состояние к некоторому значению по умолчанию?ошибка: TypeError: TypeError: null не является объектом (оценивающим 'this.state.email') onsubmit error, и если я добавляю значение = {this.state.email} в него, также выдает ошибку, что null не определен

Ответы [ 2 ]

0 голосов
/ 01 февраля 2019

Состояние может быть объявлено двумя способами в компонентах statefull / class в реакции

  1. Внутренний конструктор
  2. Внутренний класс и внешний конструктор

Внутренний конструктор:

   constructor(props) {
       super(props);
       this.state = {
          email: "",
          password: ""
       }
 }

Внутри класса и внешнего конструктора:

     state = {
          email: "",
          password: ""
       }

И вам нужно добавить значение prop в элемент TextInput, чтобы

Изменить

  <TextInput style={styles.inputs}
      placeholder="Email"
      keyboardType="email-address"            
      onChangeText={(text) => this.handleEmail(text)}      
      underlineColorAndroid='transparent'/>

К

  <TextInput style={styles.inputs}
      placeholder="Email"
      keyboardType="email-address"
      value={this.state.email}          
      onChangeText={email => this.handleEmail(email)}      
      underlineColorAndroid='transparent'/>

И установите адрес электронной почты, как показано ниже

  handleEmail = email => {
     this.setState({
        email: email
     })
   }
0 голосов
/ 01 февраля 2019

В вашем конструкторе вставьте это перед состоянием.

this.state = {...}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...