我更新了最新版本的反应路由器 – 2.4.1
我在我的应用程序中使用hashHistory
我在我的应用程序中使用hashHistory
import { Router,useRouterHistory } from 'react-router' import { createHashHistory } from 'history' // useRouterHistory creates a composable higher-order function const appHistory = useRouterHistory(createHashHistory)({ queryKey: false }) <Router history={appHistory}/>
现在我收到一个错误
Warning: Using { queryKey: false } no longer works. Instead,just don't use location state if you don't want a key in your URL query string
如何解决这个问题?
该警告实际上不是来自React Router,而是使用它.事实上,最新版本(3.0.0,2016年5月30日)根本无法使用React Router:
原文链接:https://www.f2er.com/react/301179.htmlUncaught Invariant Violation: You have provided a history object created with history v3.x. This version of React Router is not compatible with v3 history objects. Please use history v2.x instead.
此警告现在as of v2.5.1(2016年6月24日).
所以最简单的解决方案是使用React Router使用的相同版本,由它的package.json提供:
"history": "^2.0.1"
之后,queryKey选项按预期工作.