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.

36 lines
617 B

# 动态加载数据
- order: 7
10 years ago
`dataSource="/api/data.json"`,列表数据是远程读取的,并有 loading 效果。
---
````jsx
var Table = antd.Table;
var columns = [{
title: '姓名',
dataIndex: 'name'
}, {
title: '年龄',
dataIndex: 'age'
}, {
title: '住址',
dataIndex: 'address'
}];
function resolve(result) {
return result.data;
}
var dataSource = {
url: "/components/table/demo/data.json",
resolve: function(result) {
return result.data;
}
};
React.render(<Table columns={columns} dataSource={dataSource} />
, document.getElementById('components-table-demo-ajax'));
````