美文网首页
React-router 4路由嵌套

React-router 4路由嵌套

作者: 与你清欢_李 | 来源:发表于2018-12-12 10:40 被阅读0次

    Index 页面代码

    <div>
        <TabBar>
            <TabBar.Item title='page页面' onPress={()=>this.props.history.push('/page')} />//点击跳转page页面
        </TabBar>
        <Route path={`${this.props.match.url}/item`}  component={Item} />
        <h1>Index</h1>
    </div>
    

    Index 显示结果

    <TabBar /> //底部tabbar
    <h1> Index </h1>
    

    路由配置如下

    <Router history={history}>
          <Switch>
            <Route path="/index"  component={App} />
          </Switch>
        </Router>
    

    现在切换到 /index/item
    显示结果如下:

    <TabBar /> //底部tabbar
    <h1> Index </h1>
    <item></item>
    

    现在item 就可以被嵌套在页面里面了

    相关文章

      网友评论

          本文标题:React-router 4路由嵌套

          本文链接:https://www.haomeiwen.com/subject/bpduhqtx.html