开发者问题收集

无法读取未定义的属性“navigate”-React Native

2018-09-14
507

我是 React-Native 的新手。我一直收到相同的错误“无法读取未定义的属性‘navigate’”。这是示例代码

export default class Form extends Component {
    constructor(props) {
        super(props);
        this.loginHandler = this.loginHandler.bind(this);
        this.navigate  = this.props.navigation;
        this.successCallback = this.successCallback.bind(this);
        this.state = {
            email: '',
            password: '',
        }
    }

    // TODO - Login Authentication
    loginHandler() {
        var loginUrl = 'someURL';
        fetch(loginUrl, {
            method: 'POST',
            headers: {
                Accept: 'application/json',
                'Content-Type': 'application/json',
            },
            body: JSON.stringify({
                username: this.state.email,
                password: this.state.password
            }),
        })
            .then(response => { return response.json(); })
            .then(responseData => { return responseData; })
            .then((responseData) => {
                this.successCallback(responseData.token)
            })
            .catch((err) => { console.log(err); });

    }

    successCallback(token) {
        if (token === undefined)
            alert("Email or password is incorrect !");
        else {
            this.props.navigation.navigate('User', {tokenFromUser: token});
        }

>

在 successCallback 函数中,如果生成了 token,则表示登录凭据正确,因此它应该使用参数“token”导航到 UserScreen。有人能帮帮我吗?

这是我调用 loginHandler 函数的方式

        <TouchableOpacity style={styles.button} onPress={this.loginHandler} >
            <Image source={loginImage} style={styles.image} />
            <View style={styles.SeparatorLine} />
            <Text style={styles.text}>
                Enter
            </Text>
        </TouchableOpacity>
1个回答

好吧,我想我找到了解决方案。在调用 Form.js 组件的地方,我只需添加 {...this.props} 作为 props。

<Form {...this.props}   />

这样是因为 Form.js 的 props 是空的。

Cagribeyg
2018-09-14