代码之家  ›  专栏  ›  技术社区  ›  Leon Gaban

如何让组件检测到路由更改

  •  4
  • Leon Gaban  · 技术社区  · 7 年前

    <MainContainer/>

    路线:

    import React from 'react'
    import { browserHistory, HashRouter, Route, Switch } from 'react-router-dom'
    
    import { MainContainer } from '../containers'
    import { LoginContainer } from '../containers'
    
    const Routes = () => {
      return (
        <HashRouter history={ browserHistory }>
          <Switch>
            <Route exact={ true } path="/" component={ LoginContainer }/>
            <Route exact={ true } path="/dashboard" component={ MainContainer }/>
            <Route exact={ true } path="/dashboard/services" component={ MainContainer }/>
            <Route exact={ true } path="/dashboard/users" component={ MainContainer }/>
          </Switch>
        </HashRouter>
      );
    }
    
    export default Routes
    

    问题是componentDidMount只触发一次,当路径更改时不会再次触发:

    enter image description here

    边栏

    import React from 'react'
    import { withRouter } from 'react-router-dom'
    
    class Sidebar extends React.Component {
    
      constructor(props) {
            super(props);
            this.state = {}
        this.navigate = this.navigate.bind(this);
        }
    
      navigate(path) {
        this.props.history.push(`/dashboard/${path}`);
      }
    
      render () {
        return (
          <aside className="sidebar">
            <div>
              <h1>Main</h1>
              <ul>
                <li onClick={ () => this.navigate('services')}>Services</li>
                <li onClick={ () => this.navigate('users')}>Users</li>
              </ul>
            </div>
          </aside>
        )
      }
    }
    
    export default withRouter(Sidebar)
    

    主容器

    import React, { Component } from 'react'
    import { connect } from 'react-redux'
    import store from '../../store'
    import * as firebase from 'firebase'
    
    // Components
    import { Sidebar } from '../../components'
    import { Header } from '../../components'
    
    // Containers
    import UserListContainer from '../Users/UserListContainer'
    import Body from './Body'
    
    // Actions
    import { addCurrentUser, searchUser, usersService, servicesService } from '../../actions'
    
    export class Main extends Component {
        constructor(props) {
            super(props);
        }
    
        componentDidMount() {
            firebase.auth().onAuthStateChanged((user) => {
          this.checkAuth();
        });
        }
    
        checkAuth() {
            const user = firebase.auth().currentUser;
            this.props.addCurrentUser(user.email);
        }
    
        render() {
            return (
                <main>
                    <Header currentUser={ this.props.currentUser }/>
                    <section className="main-body">
                        <Sidebar />
                        <Body service={this.props.service}/>
                    </section>
                </main>
            )
        }
    }
    
    const mapStateToProps = (state) => {
        return {
            service: state.globalReducer.service,
            currentUser: state.globalReducer.currentUser
        }
    }
    
    const mapDispatchToProps = (dispatch) => {
        return {
            searchUser: (user) => { dispatch(searchUser(user)) },
            addCurrentUser: (user) => { dispatch(addCurrentUser(user)) },
            usersService: () => { dispatch(usersService()) },
            servicesService: () => { dispatch(servicesService()) }
        }
    }
    
    const MainContainer = Main;
    export default connect(mapStateToProps, mapDispatchToProps)(MainContainer)
    
    1 回复  |  直到 7 年前
        1
  •  4
  •   Kyle Richardson    7 年前

    withRouter() 您可以使用 location 由提供给组件的支柱 withRouter()

    props.location.pathname 可能是你在这里感兴趣的。

    编辑:

    <MainContainer /> 不知道位置。它没有包裹 <Sidebar /> 是的,但我看不出你用这些信息在路线变化上做什么。

    编辑#2:

    一旦您的组件能够识别位置,就可以添加 componentWillReceiveProps

    componentWillReceiveProps( nextProps ) {
        const { location, history, match } = this.props;
    
        console.log( location );
        console.log( history );
        console.log( match );
    }