React-router4 第七篇 Recursive Paths 递归路径

时间:2022-11-24 19:34:23

https://reacttraining.com/react-router/web/example/recursive-paths

import React from 'react'
import {
BrowserRouter as Router,
Route,
Link
} from 'react-router-dom' const PEEPS = [
{ id: 0, name: 'Michelle', friends: [ 1, 2, 3 ] },
{ id: 1, name: 'Sean', friends: [ 0, 3 ] },
{ id: 2, name: 'Kim', friends: [ 0, 1, 3 ], },
{ id: 3, name: 'David', friends: [ 1, 2 ] }
] const find = (id) => PEEPS.find(p => p.id == id) const RecursiveExample = () => (
<Router>
<Person match={{ params: { id: 0 }, url: '' }}/>
</Router>
) const Person = ({ match }) => {
const person = find(match.params.id) return (
<div>
<h3>{person.name}’s Friends</h3>
<ul>
{person.friends.map(id => (
<li key={id}>
<Link to={`${match.url}/${id}`}>
{find(id).name}
</Link>
</li>
))}
</ul>
<Route path={`${match.url}/:id`} component={Person}/> // 在这儿,递归就是返回的时候再返回一个路由让你点。。。然后把自身传进去
</div>
)
} export default RecursiveExample