ztree+ajax+json请求,实现加载一棵ztree树

简介: ztree+ajax+json请求,实现加载一棵ztree树

前面的话:zTree 是一个依靠 jQuery 实现的多功能 “树插件”。优异的性能、灵活的配置、多种功能的组合是 zTree 最大优点。专门适合项目开发,尤其是 树状菜单、树状数据。


现在写了一个小的demo,具体可以参考官方文档,从文档上拿来一串json数据,放在前端的代码里面,方便大家查看效果,以及方便后端返回的数据。

<!DOCTYPE html>
<html>
    <head>
        <title>ztree</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <link rel="stylesheet" type="text/css" href="ztree_v3/css/zTreeStyle/zTreeStyle.css" />
        <link rel="stylesheet" type="text/css" href="ztree_v3/ztree_custom.css" />
        <script src="js/jquery-2.1.1.min.js"></script>
        <script src="ztree_v3/js/jquery.ztree.core-3.5.min.js"></script>
        <script src="ztree_v3/js/jquery.ztree.excheck-3.5.min.js"></script>
        <script src="ztree_v3/js/jquery.ztree.exedit-3.5.min.js"></script>
    </head>
    <body>
        <div class="content_wrap">
            <div class="zTreeDemoBackground left">
                <ul id="sys" class="ztree"></ul>
            </div>
        </div>
    </body>
    <script type="text/javascript">
        var setting = {
            view: {
                showLine: false, //不显示连接线
                //showIcon: showIconForTree //不显示文件夹图标(调用showIconForTree())
            },
            data: {
                simpleData: {
                    enable: true
                }
            }
        };
        var nodes = [
            { id: 1, pId: 0, name: "父节点1 - 展开", open: false }, //根据pId参数指定父结点
            { id: 11, pId: 1, name: "父节点11 - 折叠" },
            { id: 111, pId: 11, name: "叶子节点111" },
            { id: 112, pId: 11, name: "叶子节点112" },
            { id: 113, pId: 11, name: "叶子节点113" },
            { id: 114, pId: 11, name: "叶子节点114" },
            { id: 12, pId: 1, name: "父节点12 - 折叠" },
            { id: 121, pId: 12, name: "叶子节点121" },
            { id: 122, pId: 12, name: "叶子节点122" },
            { id: 123, pId: 12, name: "叶子节点123" },
            { id: 124, pId: 12, name: "叶子节点124" },
            { id: 13, pId: 1, name: "父节点13 - 没有子节点", isParent: false },
            { id: 2, pId: 0, name: "父节点2 - 折叠" },
            { id: 21, pId: 2, name: "父节点21 - 展开", open: false },
            { id: 211, pId: 21, name: "叶子节点211" },
            { id: 212, pId: 21, name: "叶子节点212" },
            { id: 213, pId: 21, name: "叶子节点213" },
            { id: 214, pId: 21, name: "叶子节点214" },
            { id: 22, pId: 2, name: "父节点22 - 折叠" },
            { id: 221, pId: 22, name: "叶子节点221" },
            { id: 222, pId: 22, name: "叶子节点222" },
            { id: 223, pId: 22, name: "叶子节点223" },
            { id: 224, pId: 22, name: "叶子节点224" },
            { id: 23, pId: 2, name: "父节点23 - 折叠" },
            { id: 231, pId: 23, name: "叶子节点231" },
            { id: 232, pId: 23, name: "叶子节点232" },
            { id: 233, pId: 23, name: "叶子节点233" },
            { id: 234, pId: 23, name: "叶子节点234" },
            { id: 3, pId: 0, name: "父节点3 - 没有子节点", isParent: true }
        ];
        /*function showIconForTree(treeId, treeNode) {
            return !treeNode.isParent;
        };*/
        $(document).ready(function() {
            $.fn.zTree.init($("#sys"), setting, nodes);
        });
    </script>
</html>

在浏览器里面打开,效果如图所示:


把demo放在了github上面,有需要的可以自行下载;github:https://github.com/wangxiaoting666/ztree


现在如果是把数据放在json里面,通过ajax去请求,动态渲染出来。

这里的一切插件直接去前面给到的ztree的官方网站上去下载到本地,就可以直接引用了。


demo如下:

<!DOCTYPE html>
<html>
    <head>
        <title>ztree</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <link rel="stylesheet" type="text/css" href="ztree_v3/css/zTreeStyle/zTreeStyle.css" />
        <link rel="stylesheet" type="text/css" href="ztree_v3/ztree_custom.css" />
        <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
        <script src="ztree_v3/js/jquery.ztree.core-3.5.min.js"></script>
        <script src="ztree_v3/js/jquery.ztree.excheck-3.5.min.js"></script>
        <script src="ztree_v3/js/jquery.ztree.exedit-3.5.min.js"></script>
    </head>
    <body>
        <ul id="zTree" class="ztree"  style="background: #0b2b5f;">
        </ul>
    </body>
    <script type="text/javascript">
        //树形菜单
        var zTreeObj; //定义ztree对象
        initTree(); //初始化ztree
        var setting = {
            check: {
                enable: true,
                chkStyle: "checkbox",
                chkboxType: {
                    "Y": "s",
                    "N": "s"
                }
            },
            view: {
                selectedMulti: true,
                showLine: false
            },
            data: {
                key: {
                    name: "name"
                },
                simpleData: {
                    enable: true,
                    pIdKey: "pId",
                }
            },
        };
        //请求数据
        function initTree() {
            $.get("test.json", function(data) {
                console.log(JSON.stringify(data));
                zTreeObj = $.fn.zTree.init($("#zTree"), setting, data);
                zTreeObj.expandAll(true);
            });
        }
    </script>
</html>

test.json数据

自己动手,写一些模拟的json数据吧。

[
    {
        "id": 1,
        "pId": null,
        "name": "特物联",
        "iconSkin": null,
        "checked": null,
        "isParent": true,
        "token": null
    },
    {
        "id": 2,
        "pId": 1,
        "name": "管理部",
        "iconSkin": null,
        "checked": null,
        "isParent": false,
        "token": null
    },
    {
        "id": 157,
        "pId": 2,
        "name": "我问问",
        "iconSkin": null,
        "checked": null,
        "isParent": false,
        "token": null
    },
    {
        "id": 158,
        "pId": 157,
        "name": "呜呜呜",
        "iconSkin": null,
        "checked": null,
        "isParent": false,
        "token": null
    },
    {
        "id": 160,
        "pId": 158,
        "name": "热热",
        "iconSkin": null,
        "checked": null,
        "isParent": false,
        "token": null
    },
    {
        "id": 159,
        "pId": 2,
        "name": "热热",
        "iconSkin": null,
        "checked": null,
        "isParent": false,
        "token": null
    },
    {
        "id": 134,
        "pId": 1,
        "name": "研发部",
        "iconSkin": null,
        "checked": null,
        "isParent": false,
        "token": null
    },
    {
        "id": 140,
        "pId": 1,
        "name": "安环部",
        "iconSkin": null,
        "checked": null,
        "isParent": false,
        "token": null
    },
    {
        "id": 143,
        "pId": 1,
        "name": "会议部",
        "iconSkin": null,
        "checked": null,
        "isParent": false,
        "token": null
    },
    {
        "id": 152,
        "pId": 1,
        "name": "生产部",
        "iconSkin": null,
        "checked": null,
        "isParent": false,
        "token": null
    }
]

另外:

往期合集

一些demo

相关文章
|
1月前
|
XML 前端开发 JavaScript
|
2月前
|
JSON JavaScript 前端开发
《进阶篇第6章:vue中的ajax》包括回顾发送ajax请求方式、vue-cli脚手架配置代理服务器、vue-resource
《进阶篇第6章:vue中的ajax》包括回顾发送ajax请求方式、vue-cli脚手架配置代理服务器、vue-resource
61 22
|
2月前
|
前端开发 JavaScript
回顾前端页面发送ajax请求方式
回顾前端页面发送ajax请求方式
39 18
|
2月前
|
前端开发 JavaScript Java
第6章:Vue中的ajax(包含:回顾发送ajax请求方式、vue-cli脚手架配置代理服务器)
第6章:Vue中的ajax(包含:回顾发送ajax请求方式、vue-cli脚手架配置代理服务器)
83 4
|
2月前
|
前端开发 JavaScript 数据处理
JQuery 拦截请求 | Ajax 请求拦截
【10月更文挑战第4天】
126 1
|
2月前
|
JSON 数据格式
LangChain-20 Document Loader 文件加载 加载MD DOCX EXCEL PPT PDF HTML JSON 等多种文件格式 后续可通过FAISS向量化 增强检索
LangChain-20 Document Loader 文件加载 加载MD DOCX EXCEL PPT PDF HTML JSON 等多种文件格式 后续可通过FAISS向量化 增强检索
130 2
|
3月前
|
前端开发
React技术栈-react使用的Ajax请求库实战案例
这篇文章介绍了在React应用中使用Axios和Fetch库进行Ajax请求的实战案例,展示了如何通过这些库发送GET和POST请求,并处理响应和错误。
62 10
React技术栈-react使用的Ajax请求库实战案例
|
3月前
|
前端开发
React技术栈-react使用的Ajax请求库用户搜索案例
这篇文章展示了一个React技术栈中使用Ajax请求库(如axios)进行用户搜索的实战案例,包括React组件的结构、状态管理以及如何通过Ajax请求获取并展示GitHub用户数据。
37 7
React技术栈-react使用的Ajax请求库用户搜索案例
|
3月前
|
JSON JavaScript 前端开发
Jquery常用操作汇总,dom操作,ajax请求
本文汇总了jQuery的一些常用操作,包括DOM元素的选择、添加、移除,表单操作,以及如何使用jQuery发送Ajax请求,涵盖了GET、POST请求和文件上传等常见场景。
|
3月前
|
JSON 资源调度 JavaScript
Vue框架中Ajax请求的实现方式:使用axios库或fetch API
选择 `axios`还是 `fetch`取决于项目需求和个人偏好。`axios`提供了更丰富的API和更灵活的错误处理方式,适用于需要复杂请求配置的场景。而 `fetch`作为现代浏览器的原生API,使用起来更为简洁,但在旧浏览器兼容性和某些高级特性上可能略显不足。无论选择哪种方式,它们都能有效地在Vue应用中实现Ajax请求的功能。
48 4
下一篇
DataWorks