--- order: 5 title: zh-CN: 异步加载 en-US: Asynchronous loading --- ## zh-CN 异步加载树节点。 ## en-US Asynchronous loading tree node. ```tsx import type { TreeSelectProps } from 'antd'; import { TreeSelect } from 'antd'; import type { DefaultOptionType } from 'antd/es/select'; import React, { useState } from 'react'; const App: React.FC = () => { const [value, setValue] = useState(); const [treeData, setTreeData] = useState[]>([ { id: 1, pId: 0, value: '1', title: 'Expand to load' }, { id: 2, pId: 0, value: '2', title: 'Expand to load' }, { id: 3, pId: 0, value: '3', title: 'Tree Node', isLeaf: true }, ]); const genTreeNode = (parentId: number, isLeaf = false) => { const random = Math.random().toString(36).substring(2, 6); return { id: random, pId: parentId, value: random, title: isLeaf ? 'Tree Node' : 'Expand to load', isLeaf, }; }; const onLoadData: TreeSelectProps['loadData'] = ({ id }) => new Promise(resolve => { setTimeout(() => { setTreeData( treeData.concat([genTreeNode(id, false), genTreeNode(id, true), genTreeNode(id, true)]), ); resolve(undefined); }, 300); }); const onChange = (newValue: string) => { console.log(newValue); setValue(newValue); }; return ( ); }; export default App; ```