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

75 lines
1.6 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
iframe: true
title:
zh-CN: 路由
en-US: React Router Integration
2016-03-31 09:40:55 +08:00
---
2015-07-02 17:22:26 +08:00
## zh-CN
2016-12-04 15:17:17 +08:00
`react-router@2+` 进行结合使用。
2015-07-02 17:22:26 +08:00
## en-US
2016-12-04 15:17:17 +08:00
Used together with `react-router@2+`.
2017-02-13 10:55:53 +08:00
````jsx
2016-06-12 14:14:55 +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 }) => (
2016-06-11 16:20:19 +08:00
<div>
<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>
</Router>
, mountNode);
2015-07-02 17:22:26 +08:00
````
2016-03-08 15:13:59 +08:00
````css
#components-breadcrumb-demo-router iframe {
2016-03-30 20:37:17 +08:00
height: 180px;
2016-03-08 15:13:59 +08:00
}
2015-07-02 17:22:26 +08:00
.demo-nav {
height: 30px;
line-height: 30px;
margin-bottom: 15px;
background: #f8f8f8;
}
.demo-nav a {
line-height: 30px;
padding: 0 10px;
}
.app-list {
margin-top: 15px;
2015-07-02 17:22:26 +08:00
}
2016-03-08 15:13:59 +08:00
````