您好,登錄后才能下訂單哦!
要使用AntDesign的TreeSelect組件,首先需要在項目中安裝AntDesign組件庫。
安裝AntDesign組件庫:
npm install antd
然后在項目中引入TreeSelect組件并使用它:
import React from 'react';
import { TreeSelect } from 'antd';
const treeData = [
{
title: 'Node1',
value: '0-0',
children: [
{
title: 'Child Node1',
value: '0-0-0',
},
{
title: 'Child Node2',
value: '0-0-1',
},
],
},
{
title: 'Node2',
value: '0-1',
},
];
class TreeSelectDemo extends React.Component {
state = {
value: undefined,
};
onChange = (value) => {
console.log(value);
this.setState({ value });
};
render() {
return (
<TreeSelect
showSearch
style={{ width: '100%' }}
value={this.state.value}
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
treeData={treeData}
placeholder="Please select"
onChange={this.onChange}
/>
);
}
}
export default TreeSelectDemo;
在上面的示例中,我們定義了一個包含樹形數據的treeData
數組,并在TreeSelect組件中傳入這個數據作為treeData
屬性。然后我們在onChange
方法中處理選中的值,并將其保存在組件的狀態中。
通過以上步驟,您就可以在項目中使用AntDesign的TreeSelect組件了。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。