Open zchfeng opened 2 years ago
1、
<link to="/child/007>111</link>
2、history.push()
this.props.history.push('/child02')
this.props.history.push({path那么:'/child',query:{name:'jack,age:18}’})
3、接受参数
this.props.match.params.id
this.props.location.query
一、基础用法
上面代码中,用户访问/repos(比如http://localhost:8080/#/repos)时,加载Repos组件;访问/about(http://localhost:8080/#/about)时,加载About组件。
二、嵌套路由
上面代码中,用户访问/repos时,会先加载App组件,然后在它的内部再加载Repos组件。
三、path 属性
Route组件的path属性指定路由的匹配规则。这个属性是可以省略的,这样的话,不管路径是否匹配,总是会加载指定组件。
上面代码中,当用户访问/inbox/messages/:id时,会加载Message组件。
path属性可以使用通配符。
四、Redirect 组件