3

我正在尝试通过做一个基本的应用程序来学习本机反应。我遵循了许多在线可用的教程,并为登录屏幕制作了以下课程:

import React, { Component } from "react";
import { View, StyleSheet, TextInput, Button, Alert, TouchableHighlight, Text } from "react-native";
import { styles } from "../styles/CommonStyles";

class LoginScreen extends Component {
    constructor(props: Readonly<{}>) {
        super(props)
    }
    state = {
        email: ''
    }
    static navigationOptions = {
        title: 'Login',
        header: null
    }
    render() {
        const { navigate } = this.props.navigation
        return (
            <View style={styles.container}>

                <TextInput
                style={loginStyles.emailInput}
                multiline={false}
                autoCorrect={false}
                autoCapitalize='none'
                keyboardType='email-address'
                value={this.state.email}
                onChangeText={(text) => this.handleEmail(text)}
                placeholder='Enter Email'/>

                <TouchableHighlight
                style={loginStyles.buttonGenerateOTP}
                onPress={this.onGenerateOTP}>
                    <Text
                    style={loginStyles.textGenerateOTP}>GENERATE OTP</Text>
                </TouchableHighlight>
            </View>
        )
    }

    handleEmail(text: string) {
        console.log('Email: ' + text)
        this.setState({ email: text })
        console.log('State Email: ' + this.state.email)
    }

    onGenerateOTP() {
        Alert.alert(
            'Email Entered',
            this.state.email,
            [
                { text: 'OK', style: 'cancel' }
            ],
            { cancelable: false }
        )
    }
}

export default LoginScreen

const loginStyles = StyleSheet.create({
    emailInput: {
        fontSize: 15,
        backgroundColor: '#ECECEC',
        borderColor: '#999999',
        borderRadius: 4,
        borderWidth: 0.5,
        alignSelf: 'stretch',
        textAlign: 'center',
        margin: 10,
      },
      buttonGenerateOTP: {
          backgroundColor: '#008CBA',
          borderRadius: 4,
          alignSelf: 'stretch',
          justifyContent: 'center',
          alignItems: 'center',
          margin: 10,
          padding: 10,
    },
    textGenerateOTP: {
        fontSize: 20,
        color: '#FFFFFF',
    },
})

它只包含一个输入和一个按钮,在输入的电子邮件中应显示警报。但是当我单击按钮时,我收到以下错误:

undefined is not an object (evaluating 'this.state.email')
onGenerateOTP
LoginScreen.tsx:43:8
...

我对本机和打字稿做出反应还很陌生,但是查看代码,我无法找出任何问题。我在这里做错了什么?

EDIT 登录handleEmail(text)功能实际上是打印状态,虽然使用之前的文本值(即,当我输入时QWERT,它会打印QWER,当我输入时QWERTY,它会打印QWERT),但文本参数正在正确记录

4

2 回答 2

1

我解决了这个问题。问题是我必须绑定函数。按照以下更改构造函数解决了该问题。

constructor(props: Readonly<{}>) {
    super(props)
    this.handleEmail = this.handleEmail.bind(this)
    this.onGenerateOTP = this.onGenerateOTP.bind(this)
}
于 2019-06-22T08:12:26.067 回答
0

您必须调用构造函数或 componentWillMount 生命周期方法

this.setState{{'email': 'your_value}}

只通过 setState 方法改变状态

于 2019-06-22T08:07:18.247 回答