在AngularJS中使用jQuery的zTree外掛程式的方法_AngularJS

來源:互聯網
上載者:User

前段時間一直在看AngularJS的資料,感覺是個很好的架構,很想有機會嘗試用它做點什麼。
jQuery ZTree是國內非常不錯的JQuery外掛程式,功能齊全,文檔和API也非常的友好,之前項目上常用此外掛程式。
AngularJS 功能雖然非常強大,但UI上提供的外掛程式不像JQuery那麼多,而且只能通過directive定義擴充的UI外掛程式,雖然國外已經提供了一些基於 directive的Tree功能實現,但畢竟不像ZTree那樣強大,而且Tree是做項目中很長用的一個準系統。
因此,花了一點時間做了一個例子將ZTree應用到AngularJS中。

zTree和後台資料的互動
首先,肯定是在頁面中引入Angularjs的相關指令碼,例如模組(e.g. app.js)、控制器(e.g. controller.js)、Angularjs的指令碼並進行相關標記的使用,然後引入zTree的樣式包和zTreed 指令碼,可以參看一下代碼:

<!DOCTYPE html> <html lang="zh-CN" ng-app="app">  <head>   <meta charset="utf-8">   <meta http-equiv="X-UA-Compatible" content="IE=edge">   <meta name="viewport" content="width=device-width, initial-scale=1">   <title>樹型菜單</title>     <link href="plugins/bootstrap-3.3.5/css/bootstrap.min.css" rel="stylesheet">   <link href="css/zTreeStyle.css" rel="stylesheet">    </head>  <% include ./../include/header.html %> <% include ./../include/top-menu.html %>   <div id="content" class="content clearfix" ng-controller="wtConfigInfo">   <ul tree id="tree" style="font:normal 12px/35px 'Arial';color:#dcdcdc;" class="ztree" ng-model="selectNode" value="1" >        </div>  <% include ./../include/footer.html %>  <script src="plugins/jquery-1.11.3.min.js" type="text/javascript"></script> <script src="plugins/bootstrap-3.3.5/js/bootstrap.min.js" type="text/javascript"></script> <script src="..//js/angular.min.js" type="text/javascript"></script> <script src="..//js/angular/app.js" type="text/javascript"></script> <script src="..//js/angular/controllers.js" type="text/javascript"></script> <script src="../plugins/zTree/jquery.ztree.all-3.5.js" type="text/javascript"></script>  </body> </html> 

在上面的在ul標籤中添加了指令tree,這樣在載入angularjs中,就可通過指令 tree來進行菜單資料的擷取。具體的代碼可參考以下代碼:

var app = angular.module('app', []); //樹形結構 app.directive('tree',function(){   return{     require:'?ngModel',     restrict:'A',     link:function($scope,element,attrs,ngModel){       var setting = {         data :{           simpleData:{             enable:true           }         },         callback:{           beforeClick:function(treeId, treeNode) {//點擊菜單時進行的處理             var zTree = $.fn.zTree.getZTreeObj("tree");             if (treeNode.isParent) {               zTree.expandNode(treeNode);               return false;             } else {               window.location.href=treeNode.url;               return true;             }           }         }       };       //向控制器發送訊息,進行菜單資料的擷取       $scope.$emit("menu",attrs["value"]);//此處attrs["value"]為ul中的value值,此處作為標記使用       //接受控制器返回的菜單的訊息       $scope.$on("menuData",function(event,data){         $.fn.zTree.init(element, setting, data);//進行初始化樹形菜單         var zTree = $.fn.zTree.getZTreeObj("tree");         var selectName = $("#selectName").val();         if(typeof selectName == "undefined" || selectName == ""){           zTree.selectNode(zTree.getNodeByParam("id","1"));//預設第一個選中           $("#selectName").val(zTree.getSelectedNodes()[0].code);//賦值         }else{           for(var i =0; i<data.length;i++){             if(data[i]["code"] == selectName ){               zTree.selectNode(zTree.getNodeByParam("code", data[i]["code"]));             }           }         }       });      }   } }); 

在上述代碼中,使用$scope.$emit("menu",attrs["value"]);向父控制器發送請求資料,在控制器代碼中可以接受此訊息,並使用$http向後台進行資料的請求,並將從資料庫中請求來的資料發送個子控制器。控制器的代碼可參考如下:

function wtConfigInfo($scope,$http){      //接受子控制器發送的訊息   $scope.$on("menu",function(event,params){     $http.get("/commonfuncode").success(function(data){       //發送訊息給子控制器       $scope.$broadcast("menuData",dealMenuData(data,params));     });   }); } 

這樣,就完成了zTree和後台資料的互動。


利用指令整合ZTree的執行個體

<!doctype html> <html lang="en" ng-app="app"> <head>  <meta charset="utf-8">  <title>ZTree</title>  <link rel="stylesheet" href="css/app.css">  <link rel="stylesheet" href="css/bootstrap.css">  <link rel="stylesheet" href="css/animations.css">  <link rel="stylesheet" href="css/zTreeStyle/zTreeStyle.css">     <script src="lib/jquery-1.10.2.min.js"></script>  <script src="lib/jquery.ztree.all-3.5.js"></script>  <script src="lib/angular.min.js"></script>  <script src="app.js"></script> </head> <body>    <body ng-controller='MyController'>     <ul tree class="ztree" ng-model="selectNode"></ul>   </body>   <pre>     {{selectNode | json}}   </pre>  </body> </html> 

 app.js

'use strict';  /* App Module */ var appModule = angular.module('app', []); appModule.directive('tree', function () {   return {     require: '?ngModel',     restrict: 'A',     link: function ($scope, element, attrs, ngModel) {       //var opts = angular.extend({}, $scope.$eval(attrs.nlUploadify));       var setting = {         data: {           key: {             title: "t"           },           simpleData: {             enable: true           }         },         callback: {           onClick: function (event, treeId, treeNode, clickFlag) {             $scope.$apply(function () {               ngModel.$setViewValue(treeNode);             });           }         }       };        var zNodes = [         { id: 1, pId: 0, name: "普通的父節點", t: "我很普通,隨便點我吧", open: true },         { id: 11, pId: 1, name: "葉子節點 - 1", t: "我很普通,隨便點我吧" },         { id: 12, pId: 1, name: "葉子節點 - 2", t: "我很普通,隨便點我吧" },         { id: 13, pId: 1, name: "葉子節點 - 3", t: "我很普通,隨便點我吧" },         { id: 2, pId: 0, name: "NB的父節點", t: "點我可以,但是不能點我的子節點,有本事點一個你試試看?", open: true },         { id: 21, pId: 2, name: "葉子節點2 - 1", t: "你哪個單位的?敢隨便點我?小心點兒..", click: false },         { id: 22, pId: 2, name: "葉子節點2 - 2", t: "我有老爸罩著呢,點擊我的小心點兒..", click: false },         { id: 23, pId: 2, name: "葉子節點2 - 3", t: "好歹我也是個領導,別普通群眾就來點擊我..", click: false },         { id: 3, pId: 0, name: "鬱悶的父節點", t: "別點我,我好害怕...我的子節點隨便點吧...", open: true, click: false },         { id: 31, pId: 3, name: "葉子節點3 - 1", t: "唉,隨便點我吧" },         { id: 32, pId: 3, name: "葉子節點3 - 2", t: "唉,隨便點我吧" },         { id: 33, pId: 3, name: "葉子節點3 - 3", t: "唉,隨便點我吧" }       ];       $.fn.zTree.init(element, setting, zNodes);     }   }; }); appModule.controller('MyController', function ($scope) {   }); 

實現功能:定義tree這個屬性,使<ul tree class="ztree" ng-model="selectNode"></ul>自動變成一個有資料的tree,點擊樹節點,自動變更model 的selectNode。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.