EasyUI List<T>轉tree數據格式

来源:https://www.cnblogs.com/xvan/archive/2018/12/10/10097599.html
-Advertisement-
Play Games

今天在用到EasyUI 的Tree,TreeGrid,每次轉出這個數據格式非常不爽,就自己寫了段HELPER 輸出到前端: JsonConvert.SerializeObject(TreeDataHelper<T>.GetTreeDataFromList(tList, x1 => x1.Id, x1 ...


using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;

namespace XHP
{
    /// <summary>
    /// 
    /// </summary>
    public class TreeDataHelper<T> where T:new()
    {
        public class TreeModelBase
        {
            public string id { get; set; }

            public string text { get; set; }

            /// <summary>
            /// closed
            /// </summary>
            public string state { get; set; }

            public List<TreeModelBase> children { get; set; }
        }

        /// <summary>
        /// 
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <typeparam name="TProperty"></typeparam>
        /// <param name="list"></param>
        /// <param name="idFieldExp"></param>
        /// <param name="textFieldExp"></param>
        /// <param name="rootValue"></param>
        /// <param name="emptyRootName"></param>
        /// <param name="expendLevel">樹預設展開級別-1全不展開,0展開所有,1只展開到1級</param>
        /// <returns></returns>
        public static List<TreeModelBase> GetTreeDataFromList<TProperty1, TProperty2, TProperty3>(List<T> list, Expression<Func<T, TProperty1>> idFieldExp,
            Expression<Func<T, TProperty2>> textFieldExp, Expression<Func<T, TProperty3>> pidFieldExp, string rootValue, string emptyRootName="==全部==",int expendLevel=1) 
        {
            Hashtable tb = new Hashtable();            

            var idProp = typeof(T).GetProperty(((MemberExpression)idFieldExp.Body).Member.Name);
            var textProp = typeof(T).GetProperty(((MemberExpression)textFieldExp.Body).Member.Name);
            var pidProp = typeof(T).GetProperty(((MemberExpression)pidFieldExp.Body).Member.Name);

            T parent = default(T);
            if(!string.IsNullOrWhiteSpace(rootValue))
            {
                parent = list.FirstOrDefault(x => idProp.GetValue(x)?.ToString() == rootValue);
            }

            TreeModelBase rlt = new TreeModelBase();
            if (parent == null)
            {
                rlt.id = rootValue??"";
                rlt.text = emptyRootName;
            }
            else
            {
                rlt.id = idProp.GetValue(parent).ToString();
                rlt.text = textProp.GetValue(parent).ToString();
            }
            rlt.state = expendLevel > -1 ? null : "closed";

            var currentLevel = 1;
            GetTreeDataFromList_SetChild(rlt, list, idProp, textProp, pidProp, expendLevel, currentLevel);

            return new List<TreeModelBase> { rlt } ;
        }
        

        private static void GetTreeDataFromList_SetChild(TreeModelBase parent,List<T> list,PropertyInfo idProp,PropertyInfo textProp, PropertyInfo pidProp, int expendLevel,int currentLevel)
        {
            var childs = list.Where(x => (pidProp.GetValue(x)?.ToString() ?? "") == (parent.id ?? "")  &&!string.IsNullOrWhiteSpace(idProp.GetValue(x)?.ToString()));
            if (childs.Count() == 0)
            {
                parent.state = null;
                return;
            }
            else
            {
                parent.children = new List<TreeModelBase>();
                foreach (var item in childs)
                {
                    var tempChild = new TreeModelBase();

                    tempChild.id = idProp.GetValue(item).ToString();
                    tempChild.text = textProp.GetValue(item).ToString();

                    if (expendLevel == 0)
                        tempChild.state = null;
                    else if (expendLevel == -1)
                        tempChild.state = "closed";
                    else
                    {
                        tempChild.state = currentLevel < expendLevel ? null : "closed";
                    }
                    currentLevel++;

                    GetTreeDataFromList_SetChild(tempChild, list, idProp, textProp, pidProp, expendLevel, currentLevel);

                    parent.children.Add(tempChild);
                }
            }
        }

    }
}

  

今天在用到EasyUI 的Tree,TreeGrid,每次轉出這個數據格式非常不爽,就自己寫了段HELPER

輸出到前端:

JsonConvert.SerializeObject(TreeDataHelper<T>.GetTreeDataFromList(tList, x1 => x1.Id, x1 => x1.Name, x1 => x1.ParentId, "root", "==所有分類==", 0),
new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore });


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 本身打算把二十三種設計模式,總結一下。總結了幾個設計模式後發現已經有博主總結的非常詳細,內容豐富,我看了後也是受益良多。大家可以參考他的博客,地址如下: https://www.cnblogs.com/abcdwxc/archive/2007/10/30/942834.html 如果看了有幫助,就為 ...
  • 概述:輸錯三次禁止登陸,15分鐘後才能繼續。圖示:Form1代碼:using System;using System.Configuration;using System.Data.SqlClient;using System.Windows.Forms;namespace 登錄驗證項目{ publ... ...
  • 一、準備 這裡涉及到三個文件,現在只是簡單的把代碼貼出來,後面再詳細的講一下。 三個文件分別是(都是wcf服務應用程式項目下的): 1、IService1.cs 2、Service1.svc 3、Web.config wcf的契約文件:IService1.cs 1 using System; 2 u ...
  • 1. 在微信開放平臺註冊開發者賬號,並有一個審核已通過的網站應用,並獲得相對應的AppID和AppSecret,申請通過登陸後,方可開始接入流程。 2.微信OAuth2.0授權登錄目前支持authorization_code模式,適用於擁有server端的應用授權。該模式整體流程為: 3.實現代碼如 ...
  • 一、單例模式是什麼? 定義:確保一個類僅僅能產生一個實例,並且提供一個全局訪問點來獲取該實例。 二、單例模式怎麼用? 1 class SingleCase 2 { 3 public string Name{get;set;} 4 public static SingleCase mySingle = ...
  • 例:字元串 string str="2,3,5,7,9," 去掉最後一個逗號 ","; 常用的方法: 1.SubString()方法 str=str.SubString(0,str.Length - 1); 2.Remove()方法 str=str.Remove(str.Length-1,1); 3 ...
  • 1.打開visual Studio 2. 通過菜單Edit -->Find and Replace -->Replace In File ,或者使用 ctrl + Shift + H 打開在文件中查找對話框,如下: Find What: 填寫查找語句的地方,可以是入任何查找關鍵字,也可以是正則表達式 ...
  • 最基礎的網頁設計,就是給你一個圖片你做成一個網頁,當然,我的工作是C#,個人網頁的功底不是很高首先先認識一下網頁的一些相關知識: 一般的,現在一個html網頁一般包含html文件,css文件,js文件,img文件這幾個部分css文件,全名叫成疊樣式表稍後會說說,js呢,這個文章暫時先不說現在說說網頁 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...