1.react-router-dom
使用react-router-dom 4.4.2
在頁面中直接使用
引入
i mport { Link } from 'react-router-dom'
使用
<Link to={{ pathname: "/app/studyMapModule/detail" }} >detail</Link>
報錯
browser.js?fec5:49 Warning: Hash history cannot PUSH the same path; a new entry will not be added to the history stack
原因:瀏覽器不會將同樣的路徑push到stack里
解決--添加上replace
<Link to={{ pathname: "/app/studyMapModule/detail" }}
replace>detail</Link>
