mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-11 13:59:11 +08:00
99 lines
2.2 KiB
Markdown
99 lines
2.2 KiB
Markdown
|
---
|
||
|
order: 2
|
||
|
title:
|
||
|
zh-CN: 加载更多
|
||
|
en-US: loadmore
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
可通过 `loadMore` 属性实现加载更多功能。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
To show how to realize a loading more list with `loadMore` prop.
|
||
|
|
||
|
````jsx
|
||
|
import { List, Avatar, Button, Spin } from 'antd';
|
||
|
|
||
|
import reqwest from 'reqwest';
|
||
|
|
||
|
const fakeDataUrl = 'https://randomuser.me/api/?results=5&inc=name,gender,email,nat&noinfo';
|
||
|
|
||
|
class LoadMoreList extends React.Component {
|
||
|
state = {
|
||
|
loading: true,
|
||
|
loadingMore: false,
|
||
|
showLoadingMore: true,
|
||
|
data: [],
|
||
|
}
|
||
|
componentDidMount() {
|
||
|
this.getData((res) => {
|
||
|
this.setState({
|
||
|
loading: false,
|
||
|
data: res.results,
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
getData = (callback) => {
|
||
|
reqwest({
|
||
|
url: fakeDataUrl,
|
||
|
type: 'json',
|
||
|
method: 'get',
|
||
|
contentType: 'application/json',
|
||
|
success: (res) => {
|
||
|
callback(res);
|
||
|
},
|
||
|
});
|
||
|
}
|
||
|
onLoadMore = () => {
|
||
|
this.setState({
|
||
|
loadingMore: true,
|
||
|
});
|
||
|
this.getData((res) => {
|
||
|
const data = this.state.data.concat(res.results);
|
||
|
this.setState({
|
||
|
data,
|
||
|
loadingMore: false,
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
render() {
|
||
|
const { loading, loadingMore, showLoadingMore, data } = this.state;
|
||
|
const loadMore = showLoadingMore ? (
|
||
|
<div style={{ textAlign: 'center', marginTop: 8 }}>
|
||
|
{loadingMore && <Spin />}
|
||
|
{!loadingMore && <Button onClick={this.onLoadMore}>loading more</Button>}
|
||
|
</div>
|
||
|
) : null;
|
||
|
return (
|
||
|
<List
|
||
|
className="demo-loadmore-list"
|
||
|
loading={loading}
|
||
|
itemLayout="horizontal"
|
||
|
loadMore={loadMore}
|
||
|
dataSource={data}
|
||
|
renderItem={item => (
|
||
|
<List.Item actions={[<a>edit</a>, <a>more</a>]}>
|
||
|
<List.Item.Meta
|
||
|
avatar={<Avatar src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" />}
|
||
|
title={<a href="https://ant.design">{item.name.last}</a>}
|
||
|
description="Ant Design, a design language for background applications, is refined by Ant UED Team"
|
||
|
/>
|
||
|
<div>content</div>
|
||
|
</List.Item>
|
||
|
)}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ReactDOM.render(<LoadMoreList />, mountNode);
|
||
|
````
|
||
|
|
||
|
````css
|
||
|
.demo-loadmore-list {
|
||
|
min-height: 350px;
|
||
|
}
|
||
|
````
|