我正在尝试在我的应用程序上实现 react-router。我的主文件包含以下代码:
'use strict';
import 'babel/polyfill';
import React from 'react/addons';
import App from './components/App';
import ContentPage from './components/ContentPage';
import Dispatcher from './core/Dispatcher';
import AppActions from './actions/AppActions';
import Router from 'react-router';
var { Route, RouteHandler, Link } = Router;
function run() {
var routes = (
<Route name="app" path="/" handler={App}>
<Route handler={ContentPage}/>
</Route>
);
Router.run(routes, function (Handler) {
React.render(<Handler/>, document.body);
});
}
在我的App组件中,我有以下代码:
render() {
return (
<div className="App">
<RouteHandler />
</div>
);
}
此代码生成以下错误:
TypeError: Cannot call method 'getRouteAtDepth' of undefined
at RouteHandler.createChildRouteHandler
如果我改为<RouteHandler />
直接<ContentPage />
,则代码有效。知道我在做什么错吗?
编辑:显然,我使用的是“ React starter kit ”,它也在服务器上呈现“App”组件。将 react-router 添加到该组件时,会产生此(服务器端)错误。
我的项目不需要服务器端渲染,因此删除它解决了我的问题。当我有时间时,我会尝试调查为什么会发生这种情况。