ReactJS Navigation

前端 未结 2 1240
星月不相逢
星月不相逢 2020-12-17 23:23

I am working on a sample reactjs application (in learning process). I have a page which list the list of users and a add button to add a new user.

When I click the a

2条回答
  •  南方客
    南方客 (楼主)
    2020-12-17 23:33

    Apart from browserHistory, you can use hashHistory also by importing it from react-router.

    import {hashHistory} from 'react-router';
    
    hashHistory.push('/addUser')
    

提交回复
热议问题