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

hash history cannot push state it is ignored

时间:2020-01-13 12:28:39      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:outer   err   style   hash   解决办法   can   mem   问题   ann   

react-router4.x有三种模式:

BrowserRouter
HashRouter
MemoryRouter

在使用HashRouter进行开发过程中,会遇到这个问题

Warning: hash history cannot push state it is ignored

hash模式下不能进行push state操作,解决办法是使用1,不使用2

this.props.history.push({ pathname: `${url}`, state: { nodeType: nodeType }}) //1
this.props.history.push(`${url}`, { nodeType: nodeType })  //2

hash history cannot push state it is ignored

标签:outer   err   style   hash   解决办法   can   mem   问题   ann   

原文地址:https://www.cnblogs.com/GraceY/p/12186592.html

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