ant-design/components/transfer/demo/search.md

56 lines
1.1 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
title: 带搜索框
---
2015-11-25 23:17:06 +08:00
2015-12-24 14:56:48 +08:00
带搜索框的穿梭框。
2015-11-25 23:17:06 +08:00
````jsx
import { Transfer } from 'antd';
2015-12-21 15:29:02 +08:00
const App = React.createClass({
getInitialState() {
return {
mockData: [],
targetKeys: [],
};
},
componentDidMount() {
this.getMock();
},
getMock() {
const targetKeys = [];
const mockData = [];
2015-12-21 15:29:02 +08:00
for (let i = 0; i < 20; i++) {
const data = {
key: i,
title: `内容${i + 1}`,
description: `内容${i + 1}的描述`,
2016-05-11 09:32:33 +08:00
chosen: Math.random() * 2 > 1,
2015-12-21 15:29:02 +08:00
};
if (data.chosen) {
targetKeys.push(data.key);
}
mockData.push(data);
}
2015-12-28 11:03:58 +08:00
this.setState({ mockData, targetKeys });
2015-12-21 15:29:02 +08:00
},
handleChange(targetKeys) {
2015-12-28 11:03:58 +08:00
this.setState({ targetKeys });
2015-12-21 15:29:02 +08:00
},
render() {
2015-12-28 11:03:58 +08:00
return (
2015-12-21 15:29:02 +08:00
<Transfer
dataSource={this.state.mockData}
showSearch
notFoundContent="xxxxxx"
2015-12-21 15:29:02 +08:00
targetKeys={this.state.targetKeys}
onChange={this.handleChange}
2015-12-28 11:03:58 +08:00
render={item => item.title} />
);
2016-05-11 09:32:33 +08:00
},
2015-12-21 15:29:02 +08:00
});
ReactDOM.render(<App />, mountNode);
2015-11-25 23:17:06 +08:00
````