前段時間一直在看AngularJS的資料,感覺是個很好的框架,很想有機(jī)會嘗試用它做點(diǎn)什么。
成都創(chuàng)新互聯(lián)公司主營繁峙網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app開發(fā)定制,繁峙h5重慶小程序開發(fā)搭建,繁峙網(wǎng)站營銷推廣歡迎繁峙等地區(qū)企業(yè)咨詢
JQuery ZTree是國內(nèi)非常不錯的JQuery插件,功能齊全,文檔和API也非常的友好,之前項目上常用此插件。
AngularJS功能雖然非常強(qiáng)大,但UI上提供的插件不像JQuery那么多,而且只能通過directive定義擴(kuò)展的UI插件,雖然國外已經(jīng)提供了一些基于directive的Tree功能實現(xiàn),但畢竟不像ZTree那樣強(qiáng)大,而且Tree是做項目中很長用的一個基本功能。
因此,花了一點(diǎn)時間做了一個例子將ZTree應(yīng)用到AngularJS中。
頁面代碼
ZTree
{{selectNode | json}}
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: "普通的父節(jié)點(diǎn)", t: "我很普通,隨便點(diǎn)我吧", open: true }, { id: 11, pId: 1, name: "葉子節(jié)點(diǎn) - 1", t: "我很普通,隨便點(diǎn)我吧" }, { id: 12, pId: 1, name: "葉子節(jié)點(diǎn) - 2", t: "我很普通,隨便點(diǎn)我吧" }, { id: 13, pId: 1, name: "葉子節(jié)點(diǎn) - 3", t: "我很普通,隨便點(diǎn)我吧" }, { id: 2, pId: 0, name: "NB的父節(jié)點(diǎn)", t: "點(diǎn)我可以,但是不能點(diǎn)我的子節(jié)點(diǎn),有本事點(diǎn)一個你試試看?", open: true }, { id: 21, pId: 2, name: "葉子節(jié)點(diǎn)2 - 1", t: "你哪個單位的?敢隨便點(diǎn)我?小心點(diǎn)兒..", click: false }, { id: 22, pId: 2, name: "葉子節(jié)點(diǎn)2 - 2", t: "我有老爸罩著呢,點(diǎn)擊我的小心點(diǎn)兒..", click: false }, { id: 23, pId: 2, name: "葉子節(jié)點(diǎn)2 - 3", t: "好歹我也是個領(lǐng)導(dǎo),別普通群眾就來點(diǎn)擊我..", click: false }, { id: 3, pId: 0, name: "郁悶的父節(jié)點(diǎn)", t: "別點(diǎn)我,我好害怕...我的子節(jié)點(diǎn)隨便點(diǎn)吧...", open: true, click: false }, { id: 31, pId: 3, name: "葉子節(jié)點(diǎn)3 - 1", t: "唉,隨便點(diǎn)我吧" }, { id: 32, pId: 3, name: "葉子節(jié)點(diǎn)3 - 2", t: "唉,隨便點(diǎn)我吧" }, { id: 33, pId: 3, name: "葉子節(jié)點(diǎn)3 - 3", t: "唉,隨便點(diǎn)我吧" } ]; $.fn.zTree.init(element, setting, zNodes); } }; }); appModule.controller('MyController', function ($scope) { });
頁面效果地址:http://twobugerphp.jd-app.com/ztree.html
實現(xiàn)功能:定義tree這個屬性,使<ul
tree
class
=
"ztree"
ng-model
=
"selectNode"
>
ul
>自動變成一個有數(shù)據(jù)的tree,點(diǎn)擊樹節(jié)點(diǎn),自動變更model
的selectNode。