IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> vue中echarts从左到右树的数据接口提供 -> 正文阅读

[JavaScript知识库]vue中echarts从左到右树的数据接口提供

1、我的需求是为一颗echarts三级树的可视化,提供json数据接口。需求如下图:

2、首先咱们看一下echarts的Demo数据。两种数据结构,一种是name,children;另一种是name ,value;

完整数据:https://cdn.jsdelivr.net/gh/apache/echarts-website@asf-site/examples/data/asset/data/flare.json

?

3、根据demo数据咱们可以知道需要,封装两个实体类作为对数据的抽象表达。

/**
 * @author liujian
 */
public class JsonEntry {

    private  String name;

    private  String value;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}
import com.alibaba.fastjson.JSONArray;
public class JsonChildrenEntry {
    private  String name;

    private JSONArray children;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public JSONArray getChildren() {
        return children;
    }

    public void setChildren(JSONArray children) {
        this.children = children;
    }
}

?

4、实现数据组装,当然数据的来源是diy程度比较高的,无法通用。我这边提供一种思路,下面代码无法直接拿来使用,可以给你一个样例,提供一下思路。?

 /**
     * 统计进度
     */
    @ApiOperation(value = "项目进度")
    @PreAuthorize("@ss.hasPermi('system:item:query')")
    @GetMapping(value = "/getProgress")
    public AjaxResult getProgress(@ApiParam(value = "项目id",required = true) Long id)
    {
        AjaxResult ajaxResult = new AjaxResult();
        JsonChildrenEntry jsonChildrenEntry0 = new JsonChildrenEntry();
        JSONArray jsonArray0 = new JSONArray();
        TbItem tbItem = tbItemService.selectTbItemById(id);
        jsonChildrenEntry0.setName(tbItem.getItemName());
        if(tbItem==null)
            AjaxResult.error("250");
      //  TbItem tbItemSelect = new TbItem();
       // tbItemSelect.setsLevel(tbItem.getsLevel());
        HashSet<String> modules = new HashSet<>();
       // List<TbItem> tbItems = tbItemService.selectTbItemList(tbItemSelect);
        TbTask tbTask = new TbTask();
        tbTask.setItemId(tbItem.getId());
        TbCase tbCaseSelect = new TbCase();
        tbCaseSelect.setsLevel(tbItem.getsLevel());

        List<TbCase> tbCasesList = tbCaseService.selectTbCaseList(tbCaseSelect);
        List<TbTask> tbTasks = tbTaskService.selectTbTaskList(tbTask);
       HashMap<String, String> caseMap  = new HashMap<>();

        for(int i=tbTasks.size()-1;i>=0;i--){
            String taskResult = tbTasks.get(i).getTaskResult();
            if(taskResult!=null) {
                JSONArray jsonArray = (JSONArray) JSON.parse(taskResult);
                for(int j=0;j<jsonArray.size();j++){
                    JSONObject caseObj= (JSONObject)jsonArray.get(j);
                     caseMap.put(caseObj.getString("case_id"),caseObj.getString("conclusion"));
                }
            }else
                continue;
        }

//        for (TbTask tbT:tbTasks) {
//           modules.add(tbT.getModel());
//        }
        for (TbCase tbc:tbCasesList){
            modules.add(tbc.getModelId().toString());
        }

        for (String m:modules) {
            if("1".equals(m)){
                JsonChildrenEntry jsonChildrenEntry1= new JsonChildrenEntry();
                JSONArray jsonArray = new JSONArray();
                TbCase tbCase = new TbCase();
                tbCase.setModelId(1L);
                tbCase.setsLevel(tbItem.getsLevel());

                List<TbCase> tbCases = tbCaseService.selectTbCaseList(tbCase);
                jsonChildrenEntry1.setName("环境失效");
                for (TbCase c:tbCases) {
                        if(caseMap.get(c.getId().toString())!=null&&caseMap.get(c.getId().toString())!=""){

                            JSONArray children3 = new JSONArray();
                            JsonChildrenEntry jsonChildrenEntry2 = new JsonChildrenEntry();
                            jsonChildrenEntry2.setName(c.getCaseName());
                            JsonEntry jsonEntry = new JsonEntry();
                            jsonEntry.setName(caseMap.get(c.getId().toString()));
                            children3.add(jsonEntry);
                            jsonChildrenEntry2.setChildren(children3);
                            jsonArray.add(jsonChildrenEntry2);
                        }else {
                            JsonEntry jsonEntry = new JsonEntry();
                            jsonEntry.setName(c.getCaseName());
                            jsonArray.add(jsonEntry);
                        }
                }

                jsonChildrenEntry1.setChildren(jsonArray);
                jsonArray0.add(jsonChildrenEntry1);
            }
            if("2".equals(m)){
                JsonChildrenEntry jsonChildrenEntry1= new JsonChildrenEntry();
                JSONArray jsonArray = new JSONArray();
                TbCase tbCase = new TbCase();
                tbCase.setModelId(2L);
                tbCase.setsLevel(tbItem.getsLevel());
                tbCase.setLoading(tbItem.getFirmwareUpdate());
                List<TbCase> tbCases = tbCaseService.selectTbCaseList(tbCase);
                jsonChildrenEntry1.setName("固件安全");
                for (TbCase c:tbCases) {
                    System.out.println("2-caseMap.get(c.getId()):"+caseMap.get(c.getId().toString()));

                    if(caseMap.get(c.getId().toString())!=null&&caseMap.get(c.getId().toString())!=""){

                        JSONArray children3 = new JSONArray();
                        JsonChildrenEntry jsonChildrenEntry2 = new JsonChildrenEntry();
                        jsonChildrenEntry2.setName(c.getCaseName());
                        JsonEntry jsonEntry = new JsonEntry();
                        jsonEntry.setName(caseMap.get(c.getId().toString()));
                        children3.add(jsonEntry);
                        jsonChildrenEntry2.setChildren(children3);
                        jsonArray.add(jsonChildrenEntry2);
                    }else {
                        JsonEntry jsonEntry = new JsonEntry();
                        jsonEntry.setName(c.getCaseName());
                        jsonArray.add(jsonEntry);
                    }
                }
                jsonChildrenEntry1.setChildren(jsonArray);
                jsonArray0.add(jsonChildrenEntry1);
            }
            if("3".equals(m)){
                JsonChildrenEntry jsonChildrenEntry1= new JsonChildrenEntry();
                JSONArray jsonArray = new JSONArray();
                TbCase tbCase = new TbCase();
                tbCase.setModelId(3L);
                tbCase.setsLevel(tbItem.getsLevel());
                List<TbCase> tbCases = tbCaseService.selectTbCaseList(tbCase);
                jsonChildrenEntry1.setName("物理安全");
                for (TbCase c:tbCases) {
                    if(caseMap.get(c.getId().toString())!=null&&caseMap.get(c.getId().toString())!=""){
                        JSONArray children3 = new JSONArray();
                        JsonChildrenEntry jsonChildrenEntry2 = new JsonChildrenEntry();
                        jsonChildrenEntry2.setName(c.getCaseName());
                        JsonEntry jsonEntry = new JsonEntry();
                        jsonEntry.setName(caseMap.get(c.getId().toString()));
                        children3.add(jsonEntry);
                        jsonChildrenEntry2.setChildren(children3);
                        jsonArray.add(jsonChildrenEntry2);
                    }else {
                        JsonEntry jsonEntry = new JsonEntry();
                        jsonEntry.setName(c.getCaseName());
                        jsonArray.add(jsonEntry);
                    }
                }

                jsonChildrenEntry1.setChildren(jsonArray);
                jsonArray0.add(jsonChildrenEntry1);
            }
        }

        jsonChildrenEntry0.setChildren(jsonArray0);
        ajaxResult.put("treeData",jsonChildrenEntry0);

        return  ajaxResult;
    }
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-01 23:16:14  更:2022-04-01 23:19:27 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 4:17:01-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码