react-router url參數(shù)更新 但是頁面不更新的解決辦法
eg: problemsManage/view 切換到 problemsManage/add 頁面參數(shù)更新城须,但是頁面沒有更新瞻颂。
使用 componentWillReceiveProps(newProps) 函數(shù)熏瞄,當 props 改變時,我們就可以在該函數(shù)中通過 newProps拿到新的url參數(shù)处铛,來進行更新。
componentWillReceiveProps(newProps) {
const id = newProps.match.params.id;
// 一些操作
}