当我将“exitBeforeEnter”道具添加到具有嵌套路由的 Animate Presence 组件时,这些路由根本没有呈现,但是当我刷新它们呈现的页面时,删除此道具或直接转到该组件将修复它,但我需要使用 react-router 中的 prop 和重定向组件
这是我的代码:
<AnimatePresence exitBeforeEnter>
<Switch location={this.props.location} key={this.props.location.pathname} >
<Route exact path='/home' component={() => <.../>
<Route path='/home/:alpha3Code' component={({match}) =>
.... />
<Redirect to='/home' />
</Switch>
</AnimatePresence>