mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 12:39:49 +08:00
d0532db3d7
+ close #1900
1.6 KiB
1.6 KiB
category | chinese | type | cols | english |
---|---|---|---|---|
Components | 穿梭框 | Form Control | 1 | Transfer |
双栏穿梭选择框。
何时使用
用直观的方式在两栏中移动元素,完成选择行为。
API
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
dataSource | 数据源 | Array | [] |
render | 每行数据渲染函数 | Function(record) | |
targetKeys | 显示在右侧框数据的key集合 | Array | [] |
onChange | 变化时回调函数 | Function(targetKeys, direction, moveKeys) | |
listStyle | 两个穿梭框的自定义样式 | Object | |
className | 自定义类 | String | |
titles | 标题集合,顺序从左至右 | Array | ['源列表', '目的列表'] |
operations | 操作文案集合,顺序从上至下 | Array | [] |
showSearch | 是否显示搜索框 | Boolean | false |
searchPlaceholder | 搜索框的默认值 | String | '请输入搜索内容' |
notFoundContent | 当列表为空时显示的内容 | React.node | '列表为空' |
footer | 底部渲染函数 | Function(props) |
注意
按照 React 的规范,所有的组件数组必须绑定 key。在 Transfer 中,dataSource
里的数据值需要指定 key
值。对于 dataSource
默认将每列数据的 key
属性作为唯一的标识。
如果你的数据没有这个属性,务必使用 rowKey
来指定数据列的主键。
// 比如你的数据主键是 uid
return <Transfer rowKey={record => record.uid} />;