标签:link tor bsp ref imp lin target bubuko href
前言:
在页面中直接使用
import { 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 里
<Link to={{ pathname: "/app/studyMapModule/detail" }} replace>detail</Link>
标签:link tor bsp ref imp lin target bubuko href
原文地址:https://www.cnblogs.com/ostrich-sunshine/p/9770774.html