国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

Angular2學(xué)習(xí)教程之組件中的DOM操作詳解

2024-05-06 15:16:34
字體:
供稿:網(wǎng)友

前言

有時不得不面對一些需要在組件中直接操作DOM的情況,如我們的組件中存在大量的CheckBox,我們想獲取到被選中的CheckBox,然而這些CheckBox是通過循環(huán)產(chǎn)生的,我們無法給每一個CheckBox指定一個ID,這個時候可以通過操作DOM來實現(xiàn)。angular API中包含有viewChild,contentChild等修飾符,這些修飾符可以返回模板中的DOM元素。

指令中的DOM操作

@Directive({ selector: 'p'})export class TodoDirective{ constructor(el: ElementRef, renderer: Renderer){  renderer.setElementStyle(el.nativeElement, 'backgroundColor', 'red'); }}

以上聲明了一個指令,使用是需要在module中的declarations中聲明。該指令的作用是將p元素的backgroundColor設(shè)置為red。

-ElementRef是一個允許直接獲取DOM元素的一個類,該類包含一個nativeElement屬性。當(dāng)不允許直接操作原生DOM元素時,該屬性值為null。

-Renderer該類包含大量可以用來操作DOM原生的方法。

@ViewChild和@ViewChildren

每一個組件都有一個視圖模板,通過 template或templateUrl引入。想要獲取視圖模板中的DOM元素則可以使用@ViewChild和@ViewChildren修飾符。他們可以接受模板變量或元素標(biāo)簽或模板類名來獲取DOM節(jié)點。@ViewChild返回ElementRef類引用(獲取組件時則直接使用組件類名),而@ViewChildren返回QueryList<ElementRef>

//模板內(nèi)容<p *ngFor='let item of todos' #name>{{ item.name }}</p>//組件中獲取DOM@ViewChildren('name')todoNames: QueryList<ElementRef>;@ViewChild('name')todoName: ElementRef;ngAfterViewInit(){ this.todoNames.forEach(e=>console.log(e.nativeElement.innerText)); console.log(this.todoName.nativeElement.innerText);}

@ViewChild('name')和@ViewChildren('name')通過name模板變量獲取p標(biāo)簽DOM節(jié)點,可以在ngAfterViewInit聲明周期鉤子中獲取節(jié)點信息,當(dāng)然也可以在其他函數(shù)中,只要保證視圖完成初始化即可。

QueryList是一個不可變的列表,其存在一個名為changes的Observable變量,因此可以被訂閱,結(jié)合notifyOnChanges方法,可以實時查看QueryList中變量的變化。調(diào)用notifyOnChanges函數(shù)后,當(dāng)組件的輸入發(fā)生變化時會觸發(fā)Observable發(fā)出新的值,這樣當(dāng)todoNames: QueryList<ElementRef>有更新時,便能通過下面代碼查看到變化:

this.todoNames.changes.subscribe(data => data._results.forEach( e=>console.log(e.nativeElement.innerText)));this.todoNames.notifyOnChanges();

@ContentChild和@ContentChildren

看著與@ViewChild和@ViewChildren很相似,但@ContentChild和@ContentChildren是獲取組件標(biāo)簽中的內(nèi)容的,懶得寫例子,這里直接貼上angular中文官網(wǎng)的一個例子:

import {Component, ContentChildren, Directive, Input, QueryList} from '@angular/core';@Directive({selector: 'pane'})export class Pane { @Input() id: string;}@Component({ selector: 'tab', template: ` <div>panes: {{serializedPanes}}</div>  `})export class Tab { @ContentChildren(Pane) panes: QueryList<Pane>; get serializedPanes(): string { return this.panes ? this.panes.map(p => p.id).join(', ') : ''; }}@Component({ selector: 'example-app', template: ` <tab>  <pane id="1"></pane>  <pane id="2"></pane>  <pane id="3" *ngIf="shouldShow"></pane> </tab> <button (click)="show()">Show 3</button> `,})export class ContentChildrenComp { shouldShow = false; show() { this.shouldShow = true; }}            
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 文水县| 苍南县| 炎陵县| 江陵县| 法库县| 白河县| 博罗县| 建始县| 四川省| 天祝| 浦北县| 莒南县| 永昌县| 邯郸市| 克山县| 渑池县| 威远县| 子洲县| 玉门市| 黔南| 左贡县| 迭部县| 邓州市| 石城县| 乌鲁木齐市| 绿春县| 莱州市| 古交市| 易门县| 巴彦县| 抚州市| 丹寨县| 土默特左旗| 娱乐| 汝州市| 宜宾县| 苏尼特左旗| 枞阳县| 江都市| 辛集市| 万宁市|