我正在使用React Router Native我想隐藏特定路径上的组件
<NativeRouter history={nativeHistory}>
<Route exact path="/" component={Home} />
<Route path="/about" component={About} />
<Footer />
</NativeRouter>
在我的Home
组件中,当单击链接时,About
组件必须呈现&Footer
必须隐藏&其余路由Footer
必须呈现。Footer
是一个无状态组件。
我尝试props.location
在我的Footer
组件中访问,但它undefined
是props
一个空对象{}
我的问题是如何仅将一条路径列入黑名单而不渲染特定组件?