When to use componentWillReceiveProps lifecycle method?

后端 未结 5 966
时光取名叫无心
时光取名叫无心 2020-12-04 23:51

I am new to React/Redux and have a problem with state.

TrajectContainer.jsx

class TrajectContainer extends React.Component {
    con         


        
5条回答
  •  孤城傲影
    2020-12-05 00:25

    I had similar issue add withRouter() like this:

    export default withRouter(connect(mapStateToProps, mapDispatchToProps)(TrajectContainer));
    

提交回复
热议问题