Prevent react-router history.push from reloading current route

前端 未结 5 1619
青春惊慌失措
青春惊慌失措 2021-02-19 08:55

I\'m taking my first steps with react-router.

I\'m currently using the hashHistory for development purposes and I\'m performing \'manual\' nav

5条回答
  •  清歌不尽
    2021-02-19 09:39

    In App.js:

    shouldComponentUpdate(nextProps, nextState) {
      return nextProps.location.search === this.props.location.search
    }
    

提交回复
热议问题