博客
关于我
Ant Design中Tree组件使用
阅读量:335 次
发布时间:2019-03-04

本文共 2468 字,大约阅读时间需要 8 分钟。

import React, { Component } from 'react'import { Tree } from 'antd'const { DirectoryTree } = Tree;export default class TreeComponent extends Component {    state = {}    getTreeData = () => {        return [            {                title: '机构一',                key: '0-0',                children: [                    {                        title: '用户一',                        key: '0-0-0',                        isLeaf: true                    },                    {                        title: '用户二',                        key: '0-0-1',                        isLeaf: true                    },                    {                        title: '用户三',                        key: '0-0-2',                        isLeaf: true                    },                    {                        title: '用户四',                        key: '0-0-3',                        isLeaf: true                    },                    {                        title: '用户五',                        key: '0-0-4',                        isLeaf: true                    },                    {                        title: '用户六',                        key: '0-0-5',                        isLeaf: true                    }                ]            },            {                title: '机构二',                key: '0-1',                children: [                    {                        title: '用户七',                        key: '0-1-0',                        isLeaf: true                    },                    {                        title: '用户八',                        key: '0-1-1',                        isLeaf: true                    },                    {                        title: '用户九',                        key: '0-1-2',                        isLeaf: true                    },                    {                        title: '用户十',                        key: '0-1-3',                        isLeaf: true                    }                ]            }        ];    }    onSelect = (selectedKeys, info) => {        console.log('selected', selectedKeys, info);    };    onCheck = (checkedKeys, info) => {        console.log('onCheck', checkedKeys, info);    };    componentWillMount() {        this.treeData = this.getTreeData();    }    render() {        return (            
); }}

优化说明:

  • 删除了无效的HTML标签和空白内容
  • 使用更简洁的代码格式,符合技术文档标准
  • 保留了核心功能模块的必要描述
  • 使用更专业的技术术语
  • 保持了代码的可读性和可维护性
  • 删除了不影响功能的默认属性设置
  • 保持了与原代码一致的核心功能
  • 转载地址:http://umvq.baihongyu.com/

    你可能感兴趣的文章
    postgresql 函数&存储过程 ; 递归查询
    查看>>
    PostgreSQL 分组聚合查询中 filter 子句替换 case when
    查看>>
    PostgreSQL 同步流复制锁瓶颈分析
    查看>>
    PostgreSQL 备份与还原命令 pg_dump
    查看>>
    Postgresql 外部表插件postgres_fdw的安装和使用
    查看>>
    PostgreSQL 如何从崩溃状态恢复(上)
    查看>>
    PostgreSQL 存储过程基本语法
    查看>>
    PostgreSQL 实现批量更新、删除、插入
    查看>>
    PostgreSQL 导入 .gz 备份文件
    查看>>
    PostgreSQL 批量插入&更新数据时报错(ERROR: ON CONFLICT DO UPDATE command cannot affect row a second time)
    查看>>
    PostgreSQL 新增数据返回自增ID
    查看>>
    postgresql 更新多列数据
    查看>>
    PostgreSQL 服务启动后停止
    查看>>
    PostgreSQL 辟谣存在任意代码执行漏洞:消息不实
    查看>>
    PostgreSQL+PostGIS实现两坐标点之间最短路径查询算法函数(地图工具篇.12)
    查看>>
    Qt开发——简易调色板QPalette
    查看>>
    PostgreSQL-解决连接时遇到的乱码问题
    查看>>
    PostgreSQL15.2最新版本安装_远程连接_Navicat操作_pgAdmin操作_Windows10上安装---PostgreSQL工作笔记001
    查看>>
    PostgreSQL9.1 双机部署配置(主备数据同步)
    查看>>
    Qt开发——简易网络浏览器(一)
    查看>>