React Router:在呈现的Route组件中访问历史记录

时间:2017-09-12 19:47:36

标签: javascript reactjs react-router

我知道这方面有很多问题,但我似乎无法让它发挥作用:我需要访问"历史"来自通过路由呈现的子组件。 (它从redux容器接收道具)。

我需要将历史对象传递给每个Route中呈现的组件,以便我可以在子组件中this.props.history.push('/route')。之前此应用程序的动态性较差,因此每个Route都使用component={someComponent}进行硬编码;但我发现在动态执行路由时,您需要使用render={() => <someComponent />}

将路线从component={}更改为render={() => ...}后,我在子组件中丢失了历史记录。

我的代码类似于:

import React, {Component} from 'react';
import ReactDOM from 'react-dom';
import { HashRouter as Router, Link, Route, Redirect } from 'react-router-dom';

import { Nav_Item } from '.'
import DynamicTab from '.';

export default class NavBar extends React.Component {
  constructor(props) {
    super(props);
    this.state={}
  }
  render() {

    let tabs = [];

    let routes = [];

    this.props.tabs.forEach( function(tab, index) {
      tabs.push(<Nav_Item  key={tab.name} path_name={'/' + tab.name} tab_text={tab.label} />);
      routes.push(<Route key={tab.name} path={'/' + tab.name} render={() => <DynamicTab tabName={tab.name} tabSpecs={tab} />} />);
    })

    return (
      <Router>
        <div>

          <div>
            <ol>
              { tabs }    
            </ol>
          </div>

          <Redirect to={'/' + this.props.tabs[0].name} />
          { routes } 

        </div>
      </Router>   
    )
  }
}

2 个答案:

答案 0 :(得分:6)

当你使用render时,你实际上得到了道具。在文档中,他们有一个这样的例子:

<Route {...rest} render={props => (
   <FadeIn>
       <Component {...props}/>
   </FadeIn>
 )}/>

因此,您应该可以从这些道具中访问历史记录。

另一种解决方案是有条件地渲染<Redirect/>组件。所以也许你有一些你使用的内部状态:

// in your components render function.. 
if(this.state.shouldRedirect) { 
  return (<Redirect to={yourURL} />);
}

答案 1 :(得分:0)

this.props.router,您可以访问所需的任何内容。

您可以这样做:

this.props.router.push("/newurl");

如果此组件由路由器呈现,则无需将历史记录作为单独的属性传递。