ant-design/components/table/demo/local-data.md

87 lines
1.5 KiB
Markdown
Raw Normal View History

# 外界控制数据
- order: 11
由父元素控制自身数据展示。
---
````jsx
import { Table, Button } from 'antd';
const columns = [{
title: '姓名',
dataIndex: 'name',
render: function(text) {
return <a href="#">{text}</a>;
}
}, {
title: '年龄',
dataIndex: 'age'
}, {
title: '住址',
dataIndex: 'address'
}];
const data1 = [{
2015-08-28 15:22:09 +08:00
key: '1',
name: '胡彦斌',
age: 32,
address: '西湖区湖底公园1号'
}, {
2015-08-28 15:22:09 +08:00
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号'
}, {
2015-08-28 15:22:09 +08:00
key: '3',
name: '李大嘴',
age: 32,
address: '西湖区湖底公园1号'
}];
const data2 = [{
2015-08-28 15:22:09 +08:00
key: '11',
name: '胡彦斌2',
age: 32,
address: '西湖区湖底公园2号'
}, {
2015-08-28 15:22:09 +08:00
key: '22',
name: '胡彦祖2',
age: 42,
address: '西湖区湖底公园2号'
}, {
2015-08-28 15:22:09 +08:00
key: '33',
name: '李大嘴2',
age: 32,
address: '西湖区湖底公园2号'
}];
const App = React.createClass({
getInitialState() {
return {
data: []
};
},
handleClick1() {
this.setState({
data: data1
});
},
handleClick2() {
this.setState({
data: data2
});
},
render() {
return <div>
<Table columns={columns} dataSource={this.state.data} />
<Button onClick={this.handleClick1}>加载本地数据1</Button>
&nbsp;
<Button onClick={this.handleClick2}>加载本地数据2</Button>
</div>;
}
});
2015-10-20 16:47:55 +08:00
ReactDOM.render(<App />
, document.getElementById('components-table-demo-local-data'));
````