1. 程式人生 > >react路由參數改變不重新渲染頁面

react路由參數改變不重新渲染頁面

解決 this hist 問題 nat other url test out

  • 問題描述:
    從
    /test/1
    跳轉到
    /test/2
    ,url改變了,頁面沒重新渲染
  • 解決辦法(先跳轉到其它頁面,再跳轉到目標頁面):
    this.props.history.push("/another")
    var $this = this
    setTimeout(function(){
    $this.props.history.push("/destination/"+param)
    },100)
  • react路由參數改變不重新渲染頁面