React组件中的异步操作

时间:2017-02-14 14:19:27

标签: javascript reactjs asynchronous redux redux-thunk

我正在使用React,Redux和Redux-Thunk处理项目中的登录表单。使用Redux-Thunk,我能够调度异步操作,例如将提交的登录表单传递到后端,并通过reducer将验证的数据恢复回状态。一旦组件获得所需的数据,它就可以重定向到它所需的页面而没有问题。

问题是,在重定向用户之前,我需要将一些来自异步网络请求的数据写入localStorage。如果我不执行此异步操作,则会使用写入本地存储的初始状态值重定向用户。

作为解决方案,我在React组件中使用promises和timeout来等待传入的数据。

这种做法似乎有效,但感觉不对,有人可以建议我做一个更好的做法吗?

这里是组件中的代码,我过滤了大部分无关紧要的事情,以使其尽可能短。

import React, {Component} from 'react';
import {bindActionCreators} from 'redux';
import {browserHistory} from 'react-router';
import {reduxForm} from 'redux-form';
import {connect} from 'react-redux';

import {validate} from './../utils/login/surfaceValidation';
import {inputAlerts} from './../utils/login/inputAlerts';

import {submitLogin} from './../redux/actions/index';

class Form extends Component {

    componentWillReceiveProps(nextProps) {
        if(nextProps.loginApproved) {
            this.handleValidLogin();
        }
    }

    handleLogin(props) {
        this.props.submitLogin(props);
        // submitLogin is async action handled by redux-thunk it returns
        // this.props.loginApproved and if it's true componentWillReceiveProps
        // will trigger.
    }

    handleValidLogin() {
        this.writeToStorage()
        .then(() => {
            browserHistory.push('/main');
        }).catch((err) => {
            console.log(err);
        });
    }

    writeToStorage(){
        return new Promise((resolve, reject) => {
            setTimeout(() =>{
                localStorage.setItem('user',
                    JSON.stringify({
                        authenticated: true,
                        username: this.props.username,
                        id: this.props.id,
                        token: this.props.token
                    }));
            }, 3000);
            setTimeout(() => {
                if(this.props.token != null) {
                    resolve();
                    console.log('got a token - resolving.');
                } else {
                    reject();
                    console.log('no token - rejecting. ');
                }
            }, 4000);
        });
    }

    render() {

        return (
            // Login form component is here.
            // When user submits form, this.handleLogin() is called. 
        );
    }
}


function mapDispatchToProps(dispatch){
    return bindActionCreators({submitLogin});
}

function mapStateToProps(state) {
    return {
        loginApproved: state.login.loginApproved,
        username: state.login.username,
        id: state.login.id,
        token: state.login.token
    };
}

export default connect(mapStateToProps, mapDispatchToProps)(Form);

1 个答案:

答案 0 :(得分:1)

据我所知,localStorage.seItem是同步的,因此您可以在重定向之前将函数保存数据调用到存储。