未指定必需的上下文`router`。检查`RoutingContext`的render方法

时间:2015-11-09 19:39:40

标签: javascript reactjs react-router ecmascript-harmony

我的应用是使用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路由表:

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

问题是“路由器”属性未传递到组件中。 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 我在哪里弄错了?

3 个答案:

答案 0 :(得分:4)

我不是任何反应路由器专家,但我今天早些时候遇到了同样的问题。我正在使用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;

答案 1 :(得分:4)

我倾向于说this.context.router不再存在了。我遇到了同样的问题,看起来我们应该使用this.context.history以及this.context.location来实现这些功能。如果我有所收获,我会尝试更新此回复。

答案 2 :(得分:1)

请参阅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')
  }
})