先上網(wǎng)址吧:https://github.com/500tech/angular-tree-component 這是牛逼哄哄的GitHub頁(yè)面, http://500tech.github.io/angular-tree-component/ 這就是官網(wǎng)啦。
創(chuàng)新互聯(lián)公司專(zhuān)業(yè)IDC數(shù)據(jù)服務(wù)器托管提供商,專(zhuān)業(yè)提供成都服務(wù)器托管,服務(wù)器租用,德陽(yáng)機(jī)房托管,德陽(yáng)機(jī)房托管,成都多線服務(wù)器托管等服務(wù)器托管服務(wù)。
大背景--首先我是在Angular4下面使用的。
1、install from npm :
npm install --save angular-tree-component
2、導(dǎo)入css
在styles.scss下面導(dǎo)入樣式:
@import '~angular-tree-component/dist/angular-tree-component.css';
3、import the module
app.module.ts
import { TreeModule } from 'angular-tree-component'; @NgModule({ imports: [..., TreeModule], ... }) export class AppModule { ... }
4、app.component.ts里面
nodes = [ { id: 1, name: 'root1', children: [ { id: 2, name: 'child1' }, { id: 3, name: 'child2' } ] }, { id: 4, name: 'root2', children: [ { id: 5, name: 'child2.1' }, { id: 6, name: 'child2.2', children: [ { id: 7, name: 'subsub' } ] } ] } ]; options = {};
在 app.component.html里面
<tree-root [nodes]="nodes" [options]="options"></tree-root>
到這里編譯出來(lái)就可以看到一棵樹(shù)啦
5、是不是感覺(jué)也不是很麻煩嫩,這棵樹(shù)是真的牛掰,為作者手動(dòng)點(diǎn)贊。
在option里面可以配置一些參數(shù):
顯示內(nèi)容--displayfield:'name'(以顯示名稱(chēng)為例)
id--idField: 'uuid'(如果沒(méi)有id,會(huì)隨機(jī)生成id,保證每個(gè)節(jié)點(diǎn)的唯一性)
是否展開(kāi)節(jié)點(diǎn):isExpandedField:'expanded'(默認(rèn)是不展開(kāi)的喲)
actionMapping:自定義事件,
mouse: { dblClick: (tree, node, $event) => { if (node.hasChildren) TREE_ACTIONS.TOGGLE_EXPANDED(tree, node, $event); } }
支持按需加載:
getChildren: this.getChildren.bind(this),
6、events
<tree-root [nodes]="nodes" (toggleExpanded)="onEvent($event)" (activate)="onEvent($event)" (focus)="onEvent($event)" (blur)="onEvent($event)"> </tree-root> onEvent = ($event) => console.log($event);
有activate狀態(tài)就有deactivate狀態(tài)
7、在option里面添加:useCheckBox:true可以顯示checkBox。這時(shí)還可以有一個(gè)select事件,獲取的是子節(jié)點(diǎn)。那如果需要獲取父節(jié)點(diǎn)怎么處理呢,折騰了老半天之后,最終還是找到了方法。。。。
node.partialSelected 可以獲取到根節(jié)點(diǎn)喲。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
文章名稱(chēng):angular-tree-component的使用詳解
文章鏈接:http://jinyejixie.com/article36/ijcgsg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機(jī)網(wǎng)站建設(shè)、建站公司、靜態(tài)網(wǎng)站、軟件開(kāi)發(fā)、電子商務(wù)、網(wǎng)站維護(hù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)