使用react-router当前路由在菜单上有条件地设置活动类

IT技术 reactjs react-routing
2021-05-05 07:26:26

我正在使用 react router 1.0.2,我的路由如下所示:

ReactDOM.render(
  <Provider store={store}>
    <Router history={history}>
      <Route path="/" component={App}>
        <IndexRoute component={Home}/>
        <Route path="triangles" component={Triangles}/>
      </Route>
    </Router>
  </Provider>,
  document.querySelector('.container')
);

我的 App 组件看起来像这样,我想我可以在props中传递位置:

import React, {Component} from 'react';

import Menu from './menu';

export default class App extends Component {
  render() {
    return (
      <div>
        <Menu/>
        <div className="jumbotron">
         {this.props.children && React.cloneElement(this.props.children, {
            location: this.props.location
          })}
        </div>
      </div>
    );
  }
};

我想有条件地在 Menu 组件上设置一个活动类:

import React, {Component} from 'react';

import { pushPath } from 'redux-simple-router';
import { Link } from 'react-router';

    export default class Menu extends Component {
      render() {
        return (
            <nav role="navigation" className="navbar navbar-default">
              <div id="navbarCollapse" className="collapse navbar-collapse">
                <ul className="nav navbar-nav">
                  <li className={this.props.location.pathname === '/' ? 'active' : ''}>
                    <Link to="/">Home</Link>
                  </li>
                </ul>
              </div>
            </nav>
        );
      }
    };

但是this.props.location调用菜单的渲染函数时为空?

如何将props传递给子组件?

4个回答

在活动导航元素上设置类

import { NavLink } from 'react-router-dom';

&

<NavLink to="/Home" activeClassName="active">Home</NavLink>

看起来您没有将props传递给正确的元素。childrenApp将是什么子路径被渲染(所以无论是HomeTriangles),但你想要的props要传递给Menu

为此,只需通过 JSX 传递它:

import React, {Component} from 'react';

import Menu from './menu';

export default class App extends Component {
  render() {
    return (
      <div>
        <Menu location={this.props.location} />
        <div className="jumbotron">
          {this.props.children}
        </div>
      </div>
    );
  }
};

您将需要使用 React Router 的<NavLink>组件,该组件允许您在链接处于活动状态时定义样式或添加类。只需将activeClassNameoractiveStyle属性设置为您的<NavLink>组件。

这是内置在 React Router 中的,更多详细信息请参阅官方文档:https : //reacttraining.com/react-router/web/api/NavLink

对我来说,有效的是使用,NavLink因为它具有这个活动类属性。

  1. 首先导入

    import { NavLink } from 'react-router-dom';
    
  2. 使用 anactiveClassName来获取活动类属性。

    <NavLink to="/" activeClassName="active">
         Home
    </NavLink>
    
    <NavLink to="/store" activeClassName="active">
         Store
    </NavLink>
    
    <NavLink to="/about" activeClassName="active">
         About Us
    </NavLink>
    
  3. 通过属性在 css 中设置您的类的样式active

    .active{
        color:#fcfcfc;
     }