You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
1.5 KiB
85 lines
1.5 KiB
5 years ago
|
---
|
||
|
order: 27
|
||
|
title:
|
||
|
en-US: ellipsis column
|
||
|
zh-CN: 单元格自动省略
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
设置 `column.ellipsis` 可以让单元格内容根据宽度自动省略。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Ellipsize cell content via setting `column.ellipsis`.
|
||
|
|
||
|
```jsx
|
||
|
import { Table, Divider, Tag } from 'antd';
|
||
|
|
||
|
const columns = [
|
||
|
{
|
||
|
title: 'Name',
|
||
|
dataIndex: 'name',
|
||
|
key: 'name',
|
||
|
render: text => <a>{text}</a>,
|
||
|
width: 150,
|
||
|
},
|
||
|
{
|
||
|
title: 'Age',
|
||
|
dataIndex: 'age',
|
||
|
key: 'age',
|
||
|
width: 80,
|
||
|
},
|
||
|
{
|
||
|
title: 'Address',
|
||
|
dataIndex: 'address',
|
||
|
key: 'address 1',
|
||
|
ellipsis: true,
|
||
|
},
|
||
|
{
|
||
|
title: 'Long Column Long Column Long Column',
|
||
|
dataIndex: 'address',
|
||
|
key: 'address 2',
|
||
|
ellipsis: true,
|
||
|
},
|
||
|
{
|
||
|
title: 'Long Column Long Column',
|
||
|
dataIndex: 'address',
|
||
|
key: 'address 3',
|
||
|
ellipsis: true,
|
||
|
},
|
||
|
{
|
||
|
title: 'Long Column',
|
||
|
dataIndex: 'address',
|
||
|
key: 'address 4',
|
||
|
ellipsis: true,
|
||
|
},
|
||
|
];
|
||
|
|
||
|
const data = [
|
||
|
{
|
||
|
key: '1',
|
||
|
name: 'John Brown',
|
||
|
age: 32,
|
||
|
address: 'New York No. 1 Lake Park, New York No. 1 Lake Park',
|
||
|
tags: ['nice', 'developer'],
|
||
|
},
|
||
|
{
|
||
|
key: '2',
|
||
|
name: 'Jim Green',
|
||
|
age: 42,
|
||
|
address: 'London No. 2 Lake Park, London No. 2 Lake Park',
|
||
|
tags: ['loser'],
|
||
|
},
|
||
|
{
|
||
|
key: '3',
|
||
|
name: 'Joe Black',
|
||
|
age: 32,
|
||
|
address: 'Sidney No. 1 Lake Park, Sidney No. 1 Lake Park',
|
||
|
tags: ['cool', 'teacher'],
|
||
|
},
|
||
|
];
|
||
|
|
||
|
ReactDOM.render(<Table columns={columns} dataSource={data} />, mountNode);
|
||
|
```
|