未指定必需的上下文“路由器”。检查 `RoutingContext` 的渲染方法

Required context `router` was not specified. Check the render method of `RoutingContext`

我的应用程序是带有 react-router 的 ES6 React 应用程序。我想在一小段延迟后将用户重定向到另一个页面。这是我的 React 组件:

import React from 'react'
import { Navigation } from 'react-router'

export default class Component extends React.Component {

    render () {
        return (
            <div>Component content</div>
        )
    }

    componentDidMount () {
        setTimeout(() => {
            // TODO: redirect to homepage
            console.log('redirecting...');
            this.context.router.transitionTo('homepage');
        }, 1000);
    }

}

Component.contextTypes = {
    router: React.PropTypes.func.isRequired
}

和react-router路由table:

render(
    <Router>
        <Route path='/' component={ App }>
            <IndexRoute component={ Component } />
        </Route>
    </Router>
, document.getElementById('app-container'));

问题是 'router' 属性 没有传递到组件中。 Chrome控制台的内容是:

Warning: Failed Context Types: Required context `router` was not specified in `Component`. Check the render method of `RoutingContext`.
redirecting...
Uncaught TypeError: Cannot read property 'transitionTo' of undefined

React版本为0.14.2,react-router版本为1.0.0-rc4 我哪里出错了?

我无论如何都不是反应路由器专家,但我今天早些时候遇到了同样的问题。我正在使用 React 0.14.2 和 React-Router 1.0(这是最近几天才出现的,如果不是最近的话)。在调试时我注意到 React 组件上的道具包括历史(新的导航样式 - https://github.com/rackt/react-router/blob/master/docs/guides/basics/Histories.md

我也在使用 TypeScript,但我的代码如下所示:

import React = require('react');
import Header = require('./common/header.tsx');

var ReactRouter = require('react-router');

interface Props extends React.Props<Home> {
    history: any
}

class Home extends React.Component<Props, {}> {
    render(): JSX.Element {
        return (
            <div>
                <Header.Header MenuItems={[]} />
                <div className="jumbotron">
                    <h1>Utility</h1>
                    <p>Click on one of the options below to get started...</p>
                    {<a className="btn btn-lg" onClick={() => this.props.history.pushState(null, '/remoteaccess') }>Remote Access</a>}
                    {<a className="btn btn-lg" onClick={() => this.props.history.pushState(null, '/bridge') }>Bridge</a>}
                </div>
            </div>
        );
    }
}

module.exports = Home;

我倾向于说 this.context.router 已经不存在了。我 运行 遇到了同样的问题,看起来我们应该使用 this.context.historythis.context.location 来实现这些功能。如果我有一些工作,我会尝试更新此回复。

请参阅 1.0.0 upgrade guide 并将 this.props.historypushStatereplaceState 一起使用。 context 用于其他组件(不是路由组件)。 来自升级指南:

// v1.0
// if you are a route component...
<Route component={Assignment} />

var Assignment = React.createClass({
  foo () {
    this.props.location // contains path information
    this.props.params // contains params
    this.props.history.isActive('/pathToAssignment')
  }
})