博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[React] React Router: Nested Routes
阅读量:5988 次
发布时间:2019-06-20

本文共 1472 字,大约阅读时间需要 4 分钟。

Since react-router routes are components, creating nested routes is as simple as making one route a child of another in JSX. 

 

Make the nested component:

class App extends React.Component {    render(){        return(            
); }}

 

Change the path:

const Links = () =>    
;

 

Pass the props.children to the nested component: 

const Home = (props) => 

Home

{props.children}
;const About = (props) =>

About

{props.children}
;const Contact = () =>

Contact

;

 

----------------

import React from 'react';import {hashHistory, Route, Router, Link} from 'react-router';// About is the child of home, to display the about, we need to access// props.childrenconst Home = (props) => 

Home

{props.children}
;const About = (props) =>

About

{props.children}
;const Contact = () =>

Contact

;const Links = () =>
;class App extends React.Component { render(){ return(
); }}export default App;

 

转载地址:http://edylx.baihongyu.com/

你可能感兴趣的文章
Python算法(含源代码下载)
查看>>
解决PHP生成校验码时“图像因其本身有错无法显示”的错误
查看>>
HDU 1247 Hat’s Words
查看>>
利用Windows自带的Certutil查看文件MD5
查看>>
Git处理 行结束符
查看>>
通过原生js添加div和css
查看>>
[训练日志] 7月13日
查看>>
Python 模块 和 包
查看>>
Leetcode | Unique Binary Search Trees I && II
查看>>
python dict 两种遍历方式的比较
查看>>
简单的导出表格和将表格下载到桌面上。
查看>>
23、php知识点总结基础教程--part-1
查看>>
《ArcGIS Engine+C#实例开发教程》第一讲桌面GIS应用程序框架的建立
查看>>
python中的sort、sorted、reverse、reversed详解
查看>>
快速排序(啊哈算法)
查看>>
队列模拟基本操作I
查看>>
时间转换
查看>>
递归查询上一级
查看>>
JAVA - 大数类详解
查看>>
查询指定名称的文件
查看>>