--- order: 0 title: zh-CN: 基本用法 en-US: Basic --- ## zh-CN 最基本的用法,展示了 `dataSource`、`targetKeys`、每行的渲染函数 `render` 以及回调函数 `onChange` 的用法。 ## en-US The most basic usage of `Transfer` involves providing the source data and target keys arrays, plus the rendering and change callback functions. ````jsx import { Transfer } from 'antd'; const App = React.createClass({ getInitialState() { return { mockData: [], targetKeys: [], }; }, componentDidMount() { this.getMock(); }, getMock() { const targetKeys = []; const mockData = []; for (let i = 0; i < 20; i++) { const data = { key: i, title: `content${i + 1}`, description: `description of content${i + 1}`, chosen: Math.random() * 2 > 1, }; if (data.chosen) { targetKeys.push(data.key); } mockData.push(data); } this.setState({ mockData, targetKeys }); }, handleChange(targetKeys, direction, moveKeys) { console.log(targetKeys, direction, moveKeys); this.setState({ targetKeys }); }, handleSelectChange(sourceSelectedKeys, targetSelectedKeys) { console.log('sourceSelectedKeys: ', sourceSelectedKeys); console.log('targetSelectedKeys: ', targetSelectedKeys); }, render() { return ( item.title} /> ); }, }); ReactDOM.render(, mountNode); ````