Back to Ant Design

Transfer

components/transfer/index.zh-CN.md

6.3.77.0 KB
Original Source

何时使用 {#when-to-use}

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

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

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

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

代码演示 {#examples}

<!-- prettier-ignore -->

<code src="./demo/basic.tsx">基本用法</code> <code src="./demo/oneWay.tsx">单向样式</code> <code src="./demo/search.tsx">带搜索框</code> <code src="./demo/advanced.tsx">高级用法</code> <code src="./demo/custom-item.tsx">自定义渲染行数据</code> <code src="./demo/actions.tsx" version="6.0.0">自定义操作按钮</code> <code src="./demo/large-data.tsx">分页</code> <code src="./demo/table-transfer.tsx">表格穿梭框</code> <code src="./demo/tree-transfer.tsx">树穿梭框</code> <code src="./demo/status.tsx">自定义状态</code> <code src="./demo/style-class.tsx" version="6.0.0">自定义语义结构的样式和类</code> <code src="./demo/custom-select-all-labels.tsx" debug>自定义全选文字</code> <code src="./demo/component-token.tsx" debug>组件 Token</code>

API

通用属性参考:通用属性

Transfer

参数说明类型默认值版本
actions操作文案集合,顺序从上至下。当为字符串数组时使用默认的按钮,当为 ReactNode 数组时直接使用自定义元素ReactNode[][>, <]6.0.0
classNames用于自定义组件内部各语义化结构的 class,支持对象或函数Record<SemanticDOM, string> | (info: { props })=> Record<SemanticDOM, string>-
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两个穿梭框的自定义样式,使用 styles.section 代替object|({direction: left | right}) => object-
locale各种语言{ itemUnit: string; itemsUnit: string; searchPlaceholder: string; notFoundContent: ReactNode | ReactNode[]; }{ itemUnit: , itemsUnit: , searchPlaceholder: 请输入搜索内容 }
oneWay展示为单向样式booleanfalse4.3.0
operations操作文案集合,顺序从上至下。使用 actions 代替string[][>, <]
operationStyle操作栏的自定义样式,使用 styles.actions 代替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
styles用于自定义组件内部各语义化结构的行内 style,支持对象或函数Record<SemanticDOM, CSSProperties> | (info: { props })=> Record<SemanticDOM, CSSProperties>-
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)

参考示例

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

注意

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

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

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

Semantic DOM

<code src="./demo/_semantic.tsx" simplify="true"></code>

主题变量(Design Token){#design-token}

<ComponentTokenTable component="Transfer"></ComponentTokenTable>

FAQ

怎样让 Transfer 穿梭框列表支持异步数据加载 {#faq-async-data-loading}

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