gpt4 book ai didi

reactjs - React-router withRouter 不提供 mapStateToProps 中的 props?

转载 作者:行者123 更新时间:2023-12-03 13:25:56 26 4
gpt4 key购买 nike

我目前面临一个奇怪的问题,即 react-router 提供的 HOC withRouter 不会将 props 传递给 mapStateToProps 函数。我这里做错了吗?

import React, { Component } from 'react';
import { Link, withRouter } from 'react-router';
import { connect } from 'react-redux';


class ThisClass extends Component {
render() {
console.log(this.props.router); // Returns object with router keys (params, router, go, routes, ...)
// Render stuff
}
}

const mapStateToProps = (state, props) => {
console.log(state); // returns state of redux
console.log(props); // returns empty object -> {}, how come this is empty?!

return {
consultations: patientThisClassSelector(state, props)
};
}

export default connect(mapStateToProps)(withRouter(ThisClass));

最佳答案

在连接组件之前,您必须先注入(inject) router props。

要实现这一点,您必须使用

export default withRouter(connect(mapStateToProps)(ThisClass));

而不是

导出默认连接(mapStateToProps)(withRouter(ThisClass));

关于reactjs - React-router withRouter 不提供 mapStateToProps 中的 props?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43157927/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com