React-Router - 未捕获的类型错误:无法读取未定义的属性“getCurrentLocation”

Posted

技术标签:

【中文标题】React-Router - 未捕获的类型错误:无法读取未定义的属性“getCurrentLocation”【英文标题】:React-Router - Uncaught TypeError: Cannot read property 'getCurrentLocation' of undefined 【发布时间】:2017-04-13 20:07:41 【问题描述】:

我使用的是最新版本的react-router(版本^3.0.0)。

我使用 ES5 编写了以下路由:

routes.js:

var React = require("react");
var Router = require("react-router");
var AuthorPage = require('./components/authors/authorPage')
var App = require('./components/app')
var Route = Router.Route;

var routes = (
    <Route path="/" component=App>
        <Route path="authors" component=AuthorPage/>
     </Route>
);

module.exports = routes;

在另一个名为 main.js 的 JS 文件中,我执行以下调用:

main.js:

var React= require("react");
var ReactDom = require("react-dom");
var Router = require('react-router').Router;
var routes = require('./routes');
ReactDom.render(<Router routes=routes></Router>, document.getElementById('app'));

当我运行代码时,我在 Google Chrome 开发者工具中得到以下异常:

未捕获的类型错误:无法读取属性“getCurrentLocation”的 未定义

这是为什么呢?我错过了什么?

【问题讨论】:

【参考方案1】:

遇到同样的错误,这样解决了:

添加

var hashHistory = ReactRouter.hashHistory;

并且在Router中设置history等于hashHistory

<Router history=hashHistory>

所以在你的情况下:

var routes = (
<Router history=hashHistory>
    <Route path="/" component=App>
        <Route path="authors" component=AuthorPage/>
     </Route>
</Router>
);

【讨论】:

【参考方案2】:

您没有将历史记录传递给您的&lt;Router&gt;

查看histories documentation 了解更多信息。

【讨论】:

以上是关于React-Router - 未捕获的类型错误:无法读取未定义的属性“getCurrentLocation”的主要内容,如果未能解决你的问题,请参考以下文章

未捕获的错误:元素类型无效

React - 未捕获的类型错误:无法读取未定义的属性“func”

以 std::invalid_argument 类型的未捕获异常终止:stoi:无转换 (lldb)

致命错误:未捕获PDOException:SQLSTATE [HY093]:参数号无效:无参数

错误:`未捕获(承诺中)类型错误:无法读取未定义的属性'doc'`

未捕获的类型错误:无法读取未定义的属性“区域”?