What is the best way to redirect a page using React Router?

后端 未结 5 613
刺人心
刺人心 2020-11-28 20:43

I am new to React Router and learn that there are so many ways to redirect a page:

  1. Using browserHistory.push(\"/path\")

    import          
    
    
            
5条回答
  •  执笔经年
    2020-11-28 21:06

    You also can Redirect within the Route as follows. This is for handle invalid routes.

     
         (
           
         )
    }/>
    

提交回复
热议问题