真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

基于JQuery的Dynatree解決MVC中對(duì)樹形結(jié)構(gòu)的解決方案

由于日常WEB開發(fā)中常會(huì)用到樹形來(lái)完成以下主要功能。

在巴南等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供做網(wǎng)站、成都網(wǎng)站制作 網(wǎng)站設(shè)計(jì)制作定制網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站建設(shè),全網(wǎng)整合營(yíng)銷推廣,外貿(mào)網(wǎng)站制作,巴南網(wǎng)站建設(shè)費(fèi)用合理。

 

主要解決以下一些功能

  1. 數(shù)據(jù)結(jié)構(gòu)的樹形層級(jí)展示
  2. 多選項(xiàng)目
  3. 單選項(xiàng)目
  4. 方便Ajax延遲加載

 

經(jīng)過(guò)幾個(gè)插件的比較最后決定使用dynatree。來(lái)完成以上功能。

dynatree項(xiàng)目網(wǎng)站 https://code.google.com/p/dynatree/

本文中dynatree的版本為1.2.4

首先通常代碼中會(huì)有一個(gè)樹形結(jié)構(gòu)的實(shí)體對(duì)象如下代碼: 

  1. public class Node 
  2.     public int ID { get; set; } 
  3.  
  4.     public string Name { get; set; } 
  5.  
  6.     public string Description { get; set; } 
  7.  
  8.     public List Children { get; set; } 
  9.  
  10.     public Node Parent { get; set; } 

由于我們采用AJAX方式所以我打算在后臺(tái)的controller中返回json的方式來(lái)完成對(duì)tree的數(shù)據(jù)加載
于是為了方便dynatree的前臺(tái)接受,我做了一個(gè)封裝類代碼如下

  1. public class DynatreeNode 
  2.     private DynatreeNode() 
  3.     { 
  4.         children = new List(); 
  5.     } 
  6.  
  7.     #region property 
  8.     ///  
  9.     /// (required) Displayed name of the node (html is allowed here) 
  10.     ///  
  11.     public string title { get; set; } 
  12.  
  13.     ///  
  14.     /// tooltip: null, // Show this popup text. 
  15.     ///  
  16.     public string tooltip { get; set; } 
  17.  
  18.     ///  
  19.     /// href: null, // Added to the generated a tag. 
  20.     ///  
  21.     public string href { get; set; } 
  22.  
  23.     ///  
  24.     /// icon: null, // Use a custom p_w_picpath (filename relative to tree.options.p_w_picpathPath). 'null' for default icon, 'false' for no icon. 
  25.     ///  
  26.     public string icon { get; set; } 
  27.  
  28.     ///  
  29.     /// addClass: null, // Class name added to the node's span tag.     
  30.     ///  
  31.     public string addClass { get; set; } 
  32.  
  33.     ///  
  34.     ///  children: null // Array of child nodes. 
  35.     ///  
  36.     public List children { get; set; } 
  37.  
  38.     ///  
  39.     /// unselectable: false, // Prevent selection. 
  40.     ///  
  41.     public bool unselectable { get; set; } 
  42.  
  43.     ///  
  44.     /// hideCheckbox: false, // Suppress checkbox display for this node. 
  45.     ///  
  46.     public bool hideCheckbox { get; set; } 
  47.  
  48.     ///  
  49.     /// select: false, // Initial selected status. 
  50.     ///  
  51.     public bool select { get; set; } 
  52.  
  53.     ///  
  54.     /// May be used with activate(), select(), find(), ... 
  55.     ///  
  56.     public string key { get; set; } 
  57.  
  58.     ///  
  59.     /// expand: false, // Initial expanded status. 
  60.     ///  
  61.     public bool expand { get; set; } 
  62.  
  63.     ///  
  64.     /// focus: false, // Initial focused status. 
  65.     ///  
  66.     public bool focus { get; set; } 
  67.  
  68.     ///  
  69.     /// Use a folder icon. Also the node is expandable but not selectable.false 
  70.     ///  
  71.     public bool isFolder { get; set; } 
  72.  
  73.     ///  
  74.     /// isLazy: false,  Call onLazyRead(), when the node is expanded for the first time to allow for delayed 
  75.     ///  
  76.     public bool isLazy { get; set; } 
  77.  
  78.     ///  
  79.     /// noLink: false, // Use span instead of a tag for this node 
  80.     ///  
  81.     public bool noLink { get; set; } 
  82.  
  83.     ///  
  84.     /// activate: false, // Initial active status. 
  85.     ///  
  86.     public bool activate { get; set; } 
  87.     #endregion 
  88.  
  89.     public static DynatreeNode Create(Node node) 
  90.     { 
  91.         DynatreeNode dynatreeNode = new DynatreeNode 
  92.         { 
  93.             title = node.Name, 
  94.             tooltip = node.Name, 
  95.             activate = false, 
  96.             addClass = null, 
  97.             expand = false, 
  98.             focus = false, 
  99.             icon = null, 
  100.             href = null, 
  101.             key = null, 
  102.             unselectable = false, 
  103.             select = false, 
  104.             noLink = false, 
  105.             isLazy = false, 
  106.             hideCheckbox = false, 
  107.             isFolder = false 
  108.         }; 
  109.         foreach (var item in node.Children) 
  110.         { 
  111.             dynatreeNode.isFolder = true; 
  112.             dynatreeNode.children.Add(DynatreeNode.Create(item)); 
  113.         } 
  114.         return dynatreeNode; 
  115.     } 

因?yàn)閖avascript對(duì)大小寫敏感所以這里我將屬性都改成小寫已達(dá)到和dynatree的children參數(shù)統(tǒng)一。

接下來(lái)控制器很簡(jiǎn)單的返回json即可,代碼如下:

 

  1. public ActionResult AjaxTree() 
  2.         root = GetTreeRoot(); 
  3.         var dynatreeNode = DynatreeNode.Create(root); 
  4.         return Json(dynatreeNode, JsonRequestBehavior.AllowGet); 

在view視圖中我們只要加載jquery,jqueryUI和dynatree.js
由于dynatree的checkbox等使用樣式寫的,所以也必須引用dynatree.css
視圖view的代碼如下:

  1. @{ 
  2.     ViewBag.Title = "Index"; 
  3.     Layout = "~/Views/Shared/_Layout.cshtml"; 
  4.  
  5. Index

     
   
  • @section scripts{ 
  •      
  •      
  •      
  •         $(function () { 
  •             $("#tree").dynatree({ 
  •                 checkbox: true, 
  •                 selectMode: 2, 
  •                 initAjax: { url: '/home/ajaxTree' }, 
  •                 onSelect: function (select, node) { 
  •                     if (select) { 
  •                         alert(node.data.title)                         
  •                     } 
  •                 } 
  •             }); 
  •         }); 
  •      
  • 一顆簡(jiǎn)單的多選樹就這么完成了,如果要單選只需將參數(shù)selectMode設(shè)置為1

     


    網(wǎng)頁(yè)題目:基于JQuery的Dynatree解決MVC中對(duì)樹形結(jié)構(gòu)的解決方案
    轉(zhuǎn)載來(lái)于:http://weahome.cn/article/gggics.html

    其他資訊

    在線咨詢

    微信咨詢

    電話咨詢

    028-86922220(工作日)

    18980820575(7×24)

    提交需求

    返回頂部