简体   繁体   English

HOC React 和 Redux:初始化前无法访问“mapStateToProps”

[英]HOC React and Redux : Cannot access 'mapStateToProps' before initialization

I want make higher-order component / HOC wrapped with redux我想制作用redux包裹的高阶组件/ HOC

I tried something like that :我试过这样的事情:

export const Button = connect(mapStateToProps,mapDispatchToProps)(
    () => {
        return(
            <Link 
                to="#" 
                className="btn-enter"
                onClick={() => this.props.handleShare()}>
                Undang Teman
            </Link>
        );
    }); 
const mapStateToProps = (state) => {

}

const mapDispatchToProps = (dispatch) => {
    return {
        handleShare: () => dispatch({type: ActionType.HANDLE_SHARE_MODAL})
    }
}

But when i run this code i got message error :但是当我运行此代码时,我收到消息错误:

ReferenceError: Cannot access 'mapStateToProps' before initialization ReferenceError:初始化前无法访问“mapStateToProps”

as it says you should first initialize function to access it later so it must be正如它所说,您应该首先初始化函数以稍后访问它,因此它必须是

const mapStateToProps = (state) => {

}

const mapDispatchToProps = (dispatch) => {
    return {
        handleShare: () => dispatch({type: ActionType.HANDLE_SHARE_MODAL})
    }
}

export const Button = connect(mapStateToProps,mapDispatchToProps)(
    () => {
        return(
            <Link 
               to="#" 
               className="btn-enter"
               onClick={() => this.props.handleShare()}>
               Undang Teman
            </Link>
        );
    }); 

Also if you don't need mapStateToProps you can leave it as null此外,如果您不需要mapStateToProps您可以将其保留为null

// Better to declare component above and then pass it to connect HOC
const ButtonComponent = (props) => {
        return(
            <Link 
                to="#" 
                className="btn-enter"
                // ButtonComponent is a functional component
                // and to you props you get them from params
                onClick={() => props.handleShare()}>
                Undang Teman
            </Link>
        );
    }

const mapDispatchToProps = (dispatch) => {
    return {
        handleShare: () => dispatch({type: ActionType.HANDLE_SHARE_MODAL})
    }
}

export const Button = connect(null, mapDispatchToProps)(ButtonComponent); 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM