how to access history object in new React Router v4

前端 未结 3 511
抹茶落季
抹茶落季 2020-12-29 09:07

I have tried all the suggested ways in other threads and it is still not working which is why I am posting the question.

So I have history.js looking li

3条回答
  •  青春惊慌失措
    2020-12-29 09:34

    I had this problem for a while and it was simply not having the withRouter connection.

    import { withRouter } from 'react-router';
    
    
    class Sample extends Component{
    
      render()
      {
    
         

    `

提交回复
热议问题