hash history cannot push state it is ignored

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
posted @ 2020-01-13 11:46  Grace_Y  阅读(657)  评论(0)    收藏  举报