Table Table

Content

Display row data.

When to use

  • When there is a large amount of structured data that needs to be displayed;
  • When complex actions such as sorting, searching, pagination, and custom operations are required for the data.

How to use

Table has two modes, local data and remote data mode.

Local Data Model refers to loading data into memory all at once, with pure front-end functionalities such as pagination, filtering, and sorting.

Specify the data source dataSource of the table as a data array.

var dataSource = [{ key: '1', name: 'Hu Yanbin', age: 32, address: 'No. 1, Lakeside Park, Xihu District'    }, { key: '2', name: 'Hu Yanzu', age: 42, address: 'No. 1, Lakeside Park, Xihu District'    }]; <Table dataSource={dataSource} />

Remote Data Mode is a more common business scenario, where data is read from the server one page at a time and placed on the front end. Operations such as filtering, sorting, and switching pages all send requests to the backend, which returns the data for the current page and related pagination information.

The data source dataSource is specified by an instance of DataSource as follows.

var dataSource = new Table.DataSource({ url: '/api/users', resolve: function(result) { return result.data; }, getPagination: function(result) {}, getParams: function(pagination, filters, sorter) {}    }); <Table dataSource={dataSource} />

API

Table

Parameter

Description

Summary
The article discusses the use of tables for displaying structured data, highlighting when to use them and how to implement them in two modes: local and remote data. Local data mode loads all data into memory for front-end operations like pagination and sorting, while remote data mode fetches data from the server page by page, sending requests for filtering and sorting. The article provides code examples for both modes, detailing how to set up the data source and configure table columns. It also outlines the API for the Table and Column components, including parameters such as row selection, pagination, and data source configuration. The examples illustrate various functionalities, including row selection, pagination, and data fetching from a remote source, demonstrating how to create interactive and dynamic tables using the Ant Design framework. Overall, the article serves as a guide for developers looking to implement table components effectively in their applications.