Transfer
穿梭框

双栏穿梭选择框。
使用import{ Transfer }from"antd";

何时使用

  • 需要在多个可选项中进行多选时。
  • 比起 Select 和 TreeSelect,穿梭框占据更大的空间,可以展示可选项的更多信息。

穿梭选择框用直观的方式在两栏中移动元素,完成选择行为。

选择一个或以上的选项后,点击对应的方向键,可以把选中的选项移动到另一栏。其中,左边一栏为 source,右边一栏为 target,API 的设计也反映了这两个概念。

注意:穿梭框组件只支持受控使用,不支持非受控模式。

代码演示

11 Source
  • content1
  • content2
  • content3
  • content4
  • content5
  • content6
  • content7
  • content8
  • content9
  • content10
  • content11
9 Target
  • content12
  • content13
  • content14
  • content15
  • content16
  • content17
  • content18
  • content19
  • content20

最基本的用法,展示了 dataSourcetargetKeys、每行的渲染函数 render 以及回调函数 onChange onSelectChange onScroll 的用法。

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code
14 Source
  • content1
  • content2
  • content4
  • content5
  • content7
  • content8
  • content10
  • content11
  • content13
  • content14
  • content16
  • content17
  • content19
  • content20
6 Target
  • content3
  • content6
  • content9
  • content12
  • content15
  • content18

通过 oneWay 将 Transfer 转为单向样式。

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

穿梭框高级用法,可配置操作文案,可定制宽高,可对底部进行自定义渲染。

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code
0
暂无数据
暂无数据
0
暂无数据
暂无数据

自定义渲染每一个 Transfer Item,可用于渲染复杂数据。

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code
0
暂无数据
暂无数据
0
暂无数据
暂无数据

大数据下使用分页。

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code
20
0

使用 Table 组件作为自定义渲染列表。

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code
7
0-1
0
暂无数据
暂无数据

使用 Tree 组件作为自定义渲染列表。

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code
0
暂无数据
暂无数据
0
暂无数据
暂无数据
0
0

使用 status 为 Transfer 添加状态,可选 error 或者 warning

CodeSandbox Icon
codepen icon
External Link Icon
expand codeexpand code

API

通用属性参考:通用属性

Transfer

参数说明类型默认值版本
dataSource数据源,其中的数据将会被渲染到左边一栏中,targetKeys 中指定的除外RecordType extends TransferItem = TransferItem[][]
disabled是否禁用booleanfalse
selectionsIcon自定义下拉菜单图标React.ReactNode5.8.0
filterOption根据搜索内容进行筛选,接收 inputValue option direction 三个参数,(direction 自5.9.0+支持),当 option 符合筛选条件时,应返回 true,反之则返回 false(inputValue, option, direction: left | right): boolean-
footer底部渲染函数(props, { direction }) => ReactNode-direction: 4.17.0
listStyle两个穿梭框的自定义样式object|({direction: left | right}) => object-
locale各种语言{ itemUnit: string; itemsUnit: string; searchPlaceholder: string; notFoundContent: ReactNode | ReactNode[]; }{ itemUnit: , itemsUnit: , searchPlaceholder: 请输入搜索内容 }
oneWay展示为单向样式booleanfalse4.3.0
operations操作文案集合,顺序从上至下string[][>, <]
operationStyle操作栏的自定义样式CSSProperties-
pagination使用分页样式,自定义渲染列表下无效boolean | { pageSize: number, simple: boolean, showSizeChanger?: boolean, showLessItems?: boolean }false4.3.0
render每行数据渲染函数,该函数的入参为 dataSource 中的项,返回值为 ReactElement。或者返回一个普通对象,其中 label 字段为 ReactElement,value 字段为 title(record) => ReactNode-
selectAllLabels自定义顶部多选框标题的集合(ReactNode | (info: { selectedCount: number, totalCount: number }) => ReactNode)[]-
selectedKeys设置哪些项应该被选中string[] | number[][]
showSearch是否显示搜索框,或可对两侧搜索框进行配置boolean | { placeholder:string,defaultValue:string }false
showSelectAll是否展示全选勾选框booleantrue
status设置校验状态'error' | 'warning'-4.19.0
targetKeys显示在右侧框数据的 key 集合string[] | number[][]
titles标题集合,顺序从左至右ReactNode[]-
onChange选项在两栏之间转移时的回调函数(targetKeys, direction, moveKeys): void-
onScroll选项列表滚动时的回调函数(direction, event): void-
onSearch搜索框内容时改变时的回调函数(direction: left | right, value: string): void-
onSelectChange选中项发生改变时的回调函数(sourceSelectedKeys, targetSelectedKeys): void-

Render Props

Transfer 支持接收 children 自定义渲染列表,并返回以下参数:

参数说明类型版本
direction渲染列表的方向left | right
disabled是否禁用列表boolean
filteredItems过滤后的数据RecordType[]
selectedKeys选中的条目string[] | number[]
onItemSelect勾选条目(key: string | number, selected: boolean)
onItemSelectAll勾选一组条目(keys: string[] | number[], selected: boolean)

参考示例

<Transfer {...props}>{(listProps) => <YourComponent {...listProps} />}</Transfer>

注意

按照 React 的规范,所有的组件数组必须绑定 key。在 Transfer 中,dataSource 里的数据值需要指定 key 值。对于 dataSource 默认将每列数据的 key 属性作为唯一的标识。

如果你的数据没有这个属性,务必使用 rowKey 来指定数据列的主键。

// 比如你的数据主键是 uid
return <Transfer rowKey={(record) => record.uid} />;

主题变量(Design Token)

组件 Token如何定制?

Token 名称描述类型默认值
headerHeight顶部高度string | number40
itemHeight列表项高度string | number32
itemPaddingBlock列表项纵向内边距string | number5
listHeight列表高度string | number200
listWidth列表宽度string | number180
listWidthLG大号列表宽度string | number250

全局 Token如何定制?

FAQ

怎样让 Transfer 穿梭框列表支持异步数据加载

为了保持页码同步,在勾选时可以不移除选项而以禁用代替:https://codesandbox.io/s/objective-wing-6iqbx