ant-design/components/breadcrumb/demo/router.md

79 lines
1.6 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
2017-03-18 15:15:00 +08:00
iframe: 200
reactRouter: react-router
title:
zh-CN: react-router
en-US: React Router Integration
2016-03-31 09:40:55 +08:00
---
2015-07-02 17:22:26 +08:00
## zh-CN
`react-router@2` `react-router@3` 进行结合使用。
2015-07-02 17:22:26 +08:00
## en-US
Used together with `react-router@2` `react-router@3`.
2017-02-13 10:55:53 +08:00
````jsx
2018-11-28 15:00:03 +08:00
import {
Router, Route, Link, hashHistory,
} from 'react-router';
2016-12-04 15:17:17 +08:00
import { Breadcrumb, Alert } from 'antd';
2015-07-02 17:22:26 +08:00
2016-06-11 16:20:19 +08:00
const Apps = () => (
<ul className="app-list">
<li>
<Link to="/apps/1">Application1</Link><Link to="/apps/1/detail">Detail</Link>
2016-06-11 16:20:19 +08:00
</li>
<li>
<Link to="/apps/2">Application2</Link><Link to="/apps/2/detail">Detail</Link>
2016-06-11 16:20:19 +08:00
</li>
</ul>
);
2016-12-04 15:17:17 +08:00
const Home = ({ routes, params, children }) => (
2017-03-18 15:15:00 +08:00
<div className="demo">
2016-06-11 16:20:19 +08:00
<div className="demo-nav">
<Link to="/">Home</Link>
<Link to="/apps">Application List</Link>
2016-06-11 16:20:19 +08:00
</div>
2016-12-04 15:17:17 +08:00
{children || 'Home Page'}
<Alert style={{ margin: '16px 0' }} message="Click the navigation above to switch:" />
<Breadcrumb routes={routes} params={params} />
2016-06-11 16:20:19 +08:00
</div>
);
2015-07-02 17:22:26 +08:00
ReactDOM.render(
2016-02-17 16:42:26 +08:00
<Router history={hashHistory}>
<Route name="home" breadcrumbName="Home" path="/" component={Home}>
<Route name="apps" breadcrumbName="Application List" path="apps" component={Apps}>
<Route name="app" breadcrumbName="Application:id" path=":id">
<Route name="detail" breadcrumbName="Detail" path="detail" />
</Route>
</Route>
</Route>
2018-06-27 15:55:04 +08:00
</Router>,
2018-11-28 15:00:03 +08:00
mountNode
);
2015-07-02 17:22:26 +08:00
````
2016-03-08 15:13:59 +08:00
````css
2017-03-18 15:15:00 +08:00
.demo {
margin: 16px;
2016-03-08 15:13:59 +08:00
}
2015-07-02 17:22:26 +08:00
.demo-nav {
height: 30px;
line-height: 30px;
2017-03-18 15:15:00 +08:00
margin-bottom: 16px;
2015-07-02 17:22:26 +08:00
background: #f8f8f8;
}
.demo-nav a {
line-height: 30px;
2017-03-18 15:15:00 +08:00
padding: 0 8px;
}
.app-list {
2017-03-18 15:15:00 +08:00
margin-top: 16px;
2015-07-02 17:22:26 +08:00
}
2016-03-08 15:13:59 +08:00
````