码迷,mamicode.com
首页 > 其他好文 > 详细

React Warning: Hash history cannot PUSH the same path; a new entry will not be added to the history stack

时间:2018-10-11 13:42:28      阅读:2661      评论:0      收藏:0      [点我收藏+]

标签:link   tor   bsp   ref   imp   lin   target   bubuko   href   

      前言:

  • react-router-dom 4.4.2  

在页面中直接使用

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 里

解决:添加上replace
<Link to={{ pathname: "/app/studyMapModule/detail" }} replace>detail</Link> 

 

参考:https://github.com/ReactTraining/history/issues/488

React Warning: Hash history cannot PUSH the same path; a new entry will not be added to the history stack

标签:link   tor   bsp   ref   imp   lin   target   bubuko   href   

原文地址:https://www.cnblogs.com/ostrich-sunshine/p/9770774.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!