2015-06-15 22:01:39 +08:00
|
|
|
|
# Table
|
|
|
|
|
|
|
|
|
|
- category: Components
|
2015-06-26 14:42:30 +08:00
|
|
|
|
- chinese: 表格
|
2015-07-09 14:51:48 +08:00
|
|
|
|
- cols: 1
|
2015-08-22 20:16:24 +08:00
|
|
|
|
- type: 展示
|
2015-06-15 22:01:39 +08:00
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
2015-06-26 14:42:30 +08:00
|
|
|
|
展示行列数据。
|
2015-06-17 20:24:42 +08:00
|
|
|
|
|
2015-06-26 14:42:30 +08:00
|
|
|
|
## 何时使用
|
2015-06-17 20:24:42 +08:00
|
|
|
|
|
2015-06-26 14:42:30 +08:00
|
|
|
|
- 当有大量结构化的数据需要展现时;
|
|
|
|
|
- 当需要对数据进行排序、搜索、分页、自定义操作等复杂行为时。
|
2015-07-10 10:34:54 +08:00
|
|
|
|
|
2015-07-16 18:26:17 +08:00
|
|
|
|
## 如何使用
|
2015-07-10 10:34:54 +08:00
|
|
|
|
|
2015-12-09 21:49:32 +08:00
|
|
|
|
指定表格的数据源 `dataSource` 为一个数组。
|
2015-07-14 15:35:17 +08:00
|
|
|
|
|
|
|
|
|
```jsx
|
2015-12-09 21:49:32 +08:00
|
|
|
|
const dataSource = [{
|
2015-08-28 15:22:09 +08:00
|
|
|
|
key: '1',
|
2015-07-14 15:35:17 +08:00
|
|
|
|
name: '胡彦斌',
|
|
|
|
|
age: 32,
|
|
|
|
|
address: '西湖区湖底公园1号'
|
|
|
|
|
}, {
|
2015-08-28 15:22:09 +08:00
|
|
|
|
key: '2',
|
2015-07-14 15:35:17 +08:00
|
|
|
|
name: '胡彦祖',
|
|
|
|
|
age: 42,
|
|
|
|
|
address: '西湖区湖底公园1号'
|
|
|
|
|
}];
|
|
|
|
|
|
2015-12-09 21:49:32 +08:00
|
|
|
|
const columns = [{
|
|
|
|
|
title: '姓名',
|
2015-12-16 16:35:56 +08:00
|
|
|
|
dataIndex: 'name',
|
|
|
|
|
key: 'name',
|
2015-12-09 21:49:32 +08:00
|
|
|
|
}, {
|
|
|
|
|
title: '年龄',
|
2015-12-16 16:35:56 +08:00
|
|
|
|
dataIndex: 'age',
|
|
|
|
|
key: 'age',
|
2015-12-09 21:49:32 +08:00
|
|
|
|
}, {
|
|
|
|
|
title: '住址',
|
2015-12-16 16:35:56 +08:00
|
|
|
|
dataIndex: 'address',
|
|
|
|
|
key: 'age',
|
2015-12-09 21:49:32 +08:00
|
|
|
|
}];
|
2015-07-14 15:35:17 +08:00
|
|
|
|
|
2015-12-09 21:49:32 +08:00
|
|
|
|
<Table dataSource={dataSource} columns={columns} />
|
2015-07-14 15:35:17 +08:00
|
|
|
|
```
|
|
|
|
|
|
2015-12-09 21:49:32 +08:00
|
|
|
|
> 注:`dataSource` 在 `0.11.0` 版本后不再支持远程模式。
|
|
|
|
|
|
2015-07-16 18:26:17 +08:00
|
|
|
|
## API
|
|
|
|
|
|
2015-07-10 10:34:54 +08:00
|
|
|
|
### Table
|
|
|
|
|
|
2015-07-14 15:35:17 +08:00
|
|
|
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|
|
|
|
|
|---------------|--------------------------|-----------------|---------------------|---------|
|
|
|
|
|
| rowSelection | 列表项是否可选择 | Object | | false |
|
2015-07-27 15:40:30 +08:00
|
|
|
|
| pagination | 分页器 | Object | 配置项参考 [pagination](/components/pagination),设为 false 时不显示分页 | |
|
2015-10-22 21:01:52 +08:00
|
|
|
|
| size | 正常或迷你类型 | String | `default` or `small`| default |
|
2015-12-09 21:49:32 +08:00
|
|
|
|
| dataSource | 数据数组 | Array | | |
|
2015-07-15 10:34:07 +08:00
|
|
|
|
| columns | 表格列的配置描述,具体项见下表 | Array | | 无 |
|
2015-10-19 11:29:36 +08:00
|
|
|
|
| rowKey | 表格列 key 的取值 | Function(recode, index):string | | record.key |
|
2015-12-16 15:53:46 +08:00
|
|
|
|
| expandedRowRender | 额外的列展开元素 | Function | | - |
|
|
|
|
|
| defaultExpandedRowKeys | 默认展开的列 | Array | | - |
|
2015-10-19 11:29:36 +08:00
|
|
|
|
| onChange | 分页、排序、筛选变化时触发 | Function(pagination, filters, sorter) | | |
|
2015-11-03 18:16:16 +08:00
|
|
|
|
| loading | 页面是否加载中 | Boolean | | false |
|
2015-11-24 15:58:50 +08:00
|
|
|
|
| locale | 设置排序、过滤按钮的文字或 `title` | Object | | [默认值](https://github.com/ant-design/ant-design/issues/575#issuecomment-159169511) |
|
2015-07-14 20:58:54 +08:00
|
|
|
|
|
|
|
|
|
### Column
|
|
|
|
|
|
|
|
|
|
列描述数据对象,是 columns 中的一项。
|
|
|
|
|
|
|
|
|
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|
|
|
|
|
|------------|----------------------------|-----------------|---------------------|---------|
|
|
|
|
|
| title | 列头显示文字 | String or React.Element | | |
|
2015-12-16 16:35:56 +08:00
|
|
|
|
| key | React 需要的 key,建议设置 | String | | |
|
|
|
|
|
| dataIndex | 列数据在数据项中对应的 key | String | | |
|
2015-11-03 22:32:36 +08:00
|
|
|
|
| render | 生成复杂数据的渲染函数,参数分别为当前列的值,当前列数据,列索引,@return里面可以设置表格[行/列合并](#demo-colspan-rowspan) | Function(text, record, index) {} | | |
|
2015-07-14 20:58:54 +08:00
|
|
|
|
| filters | 表头的筛选菜单项 | Array | | |
|
2015-07-15 10:34:07 +08:00
|
|
|
|
| onFilter | 本地模式下,确定筛选的运行函数 | Function | | |
|
2015-11-03 22:32:36 +08:00
|
|
|
|
| filterMultiple | 是否多选 | Boolean | | true |
|
2015-12-09 21:49:32 +08:00
|
|
|
|
| sorter | 排序函数,本地排序使用一个函数,需要服务端排序可设为 true | Function or Boolean | | 无 |
|
2015-12-16 16:35:56 +08:00
|
|
|
|
| colSpan | 表头列合并,设置为 0 时,不渲染 | Number | | |
|
2015-12-25 15:46:15 +08:00
|
|
|
|
| indentSize | 展示树形数据时,每层缩进的宽度,以 px 为单位 | Number | | 15 |
|
2015-11-03 22:32:36 +08:00
|
|
|
|
| width | 列宽度 | String or Number | | 无 |
|
2015-11-05 19:46:29 +08:00
|
|
|
|
| className | 列的 className | String | | 无 |
|
2015-07-14 20:58:54 +08:00
|
|
|
|
|
2015-11-27 14:54:25 +08:00
|
|
|
|
## 注意
|
|
|
|
|
|
2015-12-16 18:27:38 +08:00
|
|
|
|
按照 React 的[规范](http://facebook.github.io/react/docs/multiple-components.html#dynamic-children),所有的组件数组必须绑定 key。在 Table 中,`dataSource` 和 `columns` 里的数据值都需要指定 `key` 值。对于 `dataSource` 默认将每列数据的 `key` 属性作为唯一的标识。
|
2015-11-27 15:08:56 +08:00
|
|
|
|
|
|
|
|
|
如果你的数据没有这个属性,务必使用 `rowKey` 来指定数据列的主键。若没有指定,控制台会出现以下的提示,表格组件也会出现各类奇怪的错误。
|
|
|
|
|
|
|
|
|
|
![](https://os.alipayobjects.com/rmsportal/luLdLvhPOiRpyss.png)
|
2015-11-27 14:54:25 +08:00
|
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
|
const rowKey = function(record) {
|
|
|
|
|
return record.uid; // 比如你的数据主键是 uid
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return <Table rowKey={rowKey} />;
|
|
|
|
|
```
|