antd Table隐藏列
时间: 2023-11-14 10:20:17 浏览: 142
要隐藏Antd Table中的列,您可以使用`columns`属性来指定要显示的列。您可以将要隐藏的列从该数组中删除,然后将新数组传递给`columns`属性。例如,如果您要隐藏名称为“age”的列,可以按如下方式处理:
```jsx
import React from 'react';
import { Table } from 'antd';
const columns = [
{
title: 'Name',
dataIndex: 'name',
key: 'name',
},
{
title: 'Age',
dataIndex: 'age',
key: 'age',
},
{
title: 'Address',
dataIndex: 'address',
key: 'address',
},
];
const data = [
{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
},
{
key: '2',
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
},
{
key: '3',
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park',
},
];
const App = () => {
const newColumns = columns.filter(column => column.key !== 'age');
return (
<Table columns={newColumns} dataSource={data} />
);
};
export default App;
```
在上面的代码中,我们使用`filter()`方法来删除`columns`数组中的“age”列,并将新数组传递给`columns`属性。这将导致只显示“Name”和“Address”列。
阅读全文