2016-03-31 09:40:55 +08:00
---
2016-12-03 17:50:41 +08:00
order: 9
2016-08-15 07:54:01 +08:00
title:
en-US: Ajax
zh-CN: 远程加载数据
2016-03-31 09:40:55 +08:00
---
2015-07-09 20:29:26 +08:00
2016-08-15 07:54:01 +08:00
## zh-CN
2015-12-09 21:49:32 +08:00
这个例子通过简单的 ajax 读取方式,演示了如何从服务端读取并展现数据,具有筛选、排序等功能以及页面 loading 效果。开发者可以自行接入其他数据处理方式。
另外,本例也展示了筛选排序功能如何交给服务端实现,列不需要指定具体的 `onFilter` 和 `sorter` 函数,而是在把筛选和排序的参数发到服务端来处理。
2016-05-27 12:39:15 +08:00
**注意,此示例使用 [模拟接口 ](https://randomuser.me ),展示数据可能不准确,请打开网络面板查看请求。**
2015-07-14 20:04:14 +08:00
2016-08-15 08:07:03 +08:00
## en-US
This example shows how to fetch and present data from remote server, and how to implement filtering and sorting in server side by sending related parameters to server.
**Note, this example use [Mock API ](https://randomuser.me ) that you can look up in Network Console.**
2017-02-13 10:55:53 +08:00
````jsx
2015-12-09 21:49:32 +08:00
import { Table } from 'antd';
import reqwest from 'reqwest';
2015-08-05 10:58:21 +08:00
2015-10-28 20:55:49 +08:00
const columns = [{
2016-10-02 08:47:13 +08:00
title: 'Name',
2015-07-14 18:29:43 +08:00
dataIndex: 'name',
2016-05-27 12:39:15 +08:00
sorter: true,
render: name => `${name.first} ${name.last}` ,
width: '20%',
}, {
2016-10-02 08:47:13 +08:00
title: 'Gender',
2016-05-27 12:39:15 +08:00
dataIndex: 'gender',
2016-03-29 17:32:03 +08:00
filters: [
2016-05-27 12:39:15 +08:00
{ text: 'Male', value: 'male' },
{ text: 'Female', value: 'female' },
2016-03-29 17:32:03 +08:00
],
2016-05-27 12:39:15 +08:00
width: '20%',
2015-07-12 17:10:06 +08:00
}, {
2016-10-02 08:47:13 +08:00
title: 'Email',
2016-05-27 12:39:15 +08:00
dataIndex: 'email',
2015-07-12 17:10:06 +08:00
}];
2015-12-09 21:49:32 +08:00
const Test = React.createClass({
getInitialState() {
2015-07-14 17:58:00 +08:00
return {
2015-12-09 21:49:32 +08:00
data: [],
pagination: {},
loading: false,
2015-11-25 17:35:49 +08:00
};
2015-07-14 18:29:43 +08:00
},
2015-12-09 21:49:32 +08:00
handleTableChange(pagination, filters, sorter) {
const pager = this.state.pagination;
pager.current = pagination.current;
this.setState({
2016-03-29 17:32:03 +08:00
pagination: pager,
2015-12-09 21:49:32 +08:00
});
2016-03-29 17:32:03 +08:00
this.fetch({
2016-05-27 12:39:15 +08:00
results: pagination.pageSize,
page: pagination.current,
2015-07-15 14:10:01 +08:00
sortField: sorter.field,
2016-03-29 17:32:03 +08:00
sortOrder: sorter.order,
...filters,
});
2015-12-09 21:49:32 +08:00
},
fetch(params = {}) {
2016-08-15 07:54:01 +08:00
console.log('params:', params);
2015-12-09 21:49:32 +08:00
this.setState({ loading: true });
reqwest({
2016-10-06 18:54:28 +08:00
url: 'https://randomuser.me/api',
2015-12-09 21:49:32 +08:00
method: 'get',
2016-05-27 12:39:15 +08:00
data: {
results: 10,
...params,
2016-05-11 09:32:33 +08:00
},
2016-05-27 12:39:15 +08:00
type: 'json',
2016-09-27 10:06:34 +08:00
}).then((data) => {
2016-05-27 12:39:15 +08:00
const pagination = this.state.pagination;
// Read total count from server
// pagination.total = data.totalCount;
pagination.total = 200;
this.setState({
loading: false,
data: data.results,
pagination,
});
2015-12-05 13:07:17 +08:00
});
2015-11-26 23:30:20 +08:00
},
2015-12-09 21:49:32 +08:00
componentDidMount() {
this.fetch();
2015-08-07 01:03:42 +08:00
},
2015-08-07 10:58:15 +08:00
render() {
2015-12-09 21:49:32 +08:00
return (
< Table columns = {columns}
2016-05-27 12:39:15 +08:00
rowKey={record => record.registered}
2016-01-08 14:41:05 +08:00
dataSource={this.state.data}
pagination={this.state.pagination}
loading={this.state.loading}
2016-06-06 13:54:10 +08:00
onChange={this.handleTableChange}
/>
2015-12-09 21:49:32 +08:00
);
2016-05-11 09:32:33 +08:00
},
2015-08-07 01:03:42 +08:00
});
2015-07-14 15:35:17 +08:00
2015-12-29 12:08:58 +08:00
ReactDOM.render(< Test / > , mountNode);
2015-07-09 20:29:26 +08:00
````