标签: reactjs react-router react-static react-static-router
我的应用具有以下结构:
const App = () => ( <Router> <Layout> <Routes /> </Layout> </Router> )
但是,我想使布局取决于所加载页面的类型。
我知道渲染的路径中有一个this.props.location,但是我不能从外部访问它。
this.props.location
我读到有关提升状态的信息,但我不知道使用<Routes />组件是否可行。
<Routes />
如何在Layout组件中获取当前路线?