标签: javascript reactjs react-router
在React上,我正在尝试重定向到一个页面,并让主要组件更新。
使用<Redirect push to ="…" />,组件会被重新呈现,但不会调用ComponentDidUpdate。
<Redirect push to ="…" />
ComponentDidUpdate
我也尝试从<Redirect>切换到this.setState(…),但这不会改变我的网址。
<Redirect>
this.setState(…)
您知道有任何变通方法吗?
谢谢!