91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Angular 4 指令快速入門教程

發布時間:2020-10-24 19:21:43 來源:腳本之家 閱讀:182 作者:semlinker 欄目:web開發

本系列教程的開發環境及開發語言:

  1. Angular 4 +
  2. Angular CLI
  3. TypeScript

基礎知識

Angular CLI 基本使用

安裝 Angular CLI (可選)

npm install -g @angular/cli

創建新的項目

ng new PROJECT-NAME

啟動本地服務器

cd PROJECT-NAME
ng serve

Angular 指令簡介

Angular 的指令分為三種:

  1. 組件(Component directive):用于構建UI組件,繼承于 Directive 類
  2. 屬性指令(Attribute directive):用于改變組件的外觀或行為
  3. 結構指令(Structural directive):用于動態添加或刪除 DOM 元素來改變 DOM 布局

Angular 指令分類圖

Angular 4 指令快速入門教程

Angular 組件組成圖

Angular 4 指令快速入門教程

第一節 - 創建指令

在 Angular 中,我們可以使用 HostBinding 裝飾器,實現元素的屬性綁定。

指令的作用

該指令用于演示如何利用 HostBinding 裝飾器,設置元素的 innerText 屬性。

指令的實現

import { Directive, HostBinding} from '@angular/core';

@Directive({
  selector: '[greet]'
})
export class GreetDirective {
 @HostBinding() innerText = 'Hello, Everyone!';
}
指令的應用
import { Component } from '@angular/core';

@Component({
 selector: 'app-root',
 template: `
  <h3>Hello, Angular</h3>
  <h3 greet>Hello, Angular</h3>
 `,
})
export class AppComponent { }

第二節 - 定義輸入屬性

為了能夠讓用戶自定義 GreetDirective 指令的問候內容,我們需要使用 Input 裝飾器去定義指令的輸入屬性。

指令的作用

該指令用于演示如何利用 Input 裝飾器,定義指令的輸入屬性,從而實現讓用戶自定義問候內容。

指令的實現

import { Directive, HostBinding, Input } from '@angular/core';

@Directive({
  selector: '[greet]'
})
export class GreetDirective {
  @Input() greet: string;
  @HostBinding() get innerText() {
    return this.greet;
  }
}

指令的應用

import { Component } from '@angular/core';

@Component({
 selector: 'app-root',
 template: `
  <h3>Hello, Angular</h3>
  <h3 [greet]="'Hello, Semlinker!'">Hello, Angular</h3>
 `,
})
export class AppComponent { }

第三節 - 事件處理

在 Angular 中,我們可以使用 HostListener 屬性裝飾器,實現元素的事件綁定。

指令的作用

該指令用于演示如何利用 HostListener 裝飾器,監聽用戶的點擊事件。

指令的實現

import { Directive, HostBinding, HostListener, Input } from '@angular/core';

@Directive({
  selector: '[greet]'
})
export class GreetDirective {
  @Input() greet: string;

  @HostBinding() get innerText() {
   return this.greet;
  }

  @HostListener('click',['$event']) 
  onClick(event) {
   this.greet = 'Clicked!';
  }
}

指令的應用

import { Component } from '@angular/core';

@Component({
 selector: 'app-root',
 template: `
  <h3>Hello, Angular</h3>
  <h3 [greet]="'Hello, Semlinker!'">Hello, Angular</h3>
 `,
})
export class AppComponent { }

第四節 - 獲取宿主元素屬性值

在 Angular 中,我們可以通過 Attribute 裝飾器來獲取指令宿主元素的屬性值。

指令的作用

該指令用于演示如何利用 Attribute 裝飾器,獲取指令宿主元素上的自定義屬性 author 的值。

指令的實現

import { Directive, HostBinding, HostListener, Input, Attribute } from '@angular/core';

@Directive({
  selector: '[greet]'
})
export class GreetDirective {
  @Input() greet: string;

  @HostBinding() get innerText() {
    return this.greet;
  }

  @HostListener('click',['$event']) 
  onClick(event) {
    this.greet = 'Clicked!';
    console.dir(event);
  }

  constructor(@Attribute('author') public author: string) {
    console.log(author);
  }
}

指令的應用

import { Component } from '@angular/core';

@Component({
 selector: 'app-root',
 template: `
  <h3>Hello, Angular</h3>
  <h3 [greet]="'Hello, Semlinker!'" 
   author="semlinker">Hello, Angular</h3>
 `,
})
export class AppComponent { }

第五節 - 使用 <ng-template> 元素

在 Angular 中,我們可以通過 ViewChild 裝飾器來獲取視圖中定義的模板元素,然后利用 ViewContainerRef 對象的 createEmbeddedView() 方法,創建內嵌視圖。

import { Component, TemplateRef, ViewContainerRef, ViewChild, 
 AfterViewInit } from '@angular/core';

@Component({
 selector: 'app-root',
 template: `
  <ng-template #tpl>
   Hello, Semlinker!
  </ng-template>
 `,
})
export class AppComponent implements AfterViewInit{
 @ViewChild('tpl')
 tplRef: TemplateRef<any>;

 constructor(private vcRef: ViewContainerRef) {}

 ngAfterViewInit() {
  this.vcRef.createEmbeddedView(this.tplRef);
 }
}

第六節 - 使用 ngTemplateOutlet 指令

ngTemplateOutlet 的作用

該指令用于基于已有的 TemplateRef 對象,插入對應的內嵌視圖。在應用 NgTemplateOutlet 指令時,我們可以通過 [ngTemplateOutletContext] 屬性來設置 EmbeddedViewRef 的上下文對象。綁定的上下文應該是一個對象,此外可通過 let語法來聲明綁定上下文對象屬性名。

ngTemplateOutlet 的使用

import { Component } from '@angular/core';

@Component({
 selector: 'app-root',
 template: `
  <ng-template #stpl>
   Hello, Semlinker!
  </ng-template>
  <ng-template #atpl>
   Hello, Angular!
  </ng-template>
  <div [ngTemplateOutlet]="atpl"></div>
  <div [ngTemplateOutlet]="stpl"></div>
 `,
})
export class AppComponent { }

ngOutletContext 的使用

import { Component } from '@angular/core';

@Component({
 selector: 'app-root',
 template: `
  <ng-template #stpl let-message="message">
   <p>{{message}}</p>
  </ng-template>
  <ng-template #atpl let-msg="message">
   <p>{{msg}}</p>
  </ng-template>
  <ng-template #otpl let-msg>
   <p>{{msg}}</p>
  </ng-template>
  <div [ngTemplateOutlet]="atpl"
   [ngOutletContext]="context">
  </div>
  <div [ngTemplateOutlet]="stpl"
   [ngOutletContext]="context">
  </div>
  <div [ngTemplateOutlet]="otpl"
   [ngOutletContext]="context">
  </div>
 `,
})
export class AppComponent {
 context = { message: 'Hello ngOutletContext!', 
  $implicit: 'Hello, Semlinker!' };
}

第七節 - 創建結構指令

指令的功能

該指令實現 ngIf 指令相反的效果,當指令的輸入條件為 Falsy 值時,顯示DOM元素。

指令的實現

import { Directive, Input, TemplateRef, ViewContainerRef } from '@angular/core';

@Directive({
  selector: '[exeUnless]'
})
export class UnlessDirective {

  @Input('exeUnless')
  set condition(newCondition: boolean) {
    if (!newCondition) { 
      this.viewContainer.createEmbeddedView(this.templateRef);
    } else {
      this.viewContainer.clear();
    }
  }

  constructor(private templateRef: TemplateRef<any>,
    private viewContainer: ViewContainerRef) {
  }
}

指令的應用

import { Component } from '@angular/core';

@Component({
 selector: 'app-root',
 template: `
  <h3 *exeUnless="condition">Hello, Semlinker!</h3> 
 `,
})
export class AppComponent {
 condition: boolean = false;
}

我有話說

Angular 中指令與組件有什么關系?

組件繼承于指令,并擴展了與 UI 視圖相關的屬性,如 template、styles、animations、encapsulation 等。

結構指令中的 TemplateRef 與 ViewContainerRef 有什么作用?

TemplateRef:用于表示內嵌的 template 模板元素,通過 TemplateRef 實例,我們可以方便創建內嵌視圖(Embedded Views),且可以輕松地訪問到通過 ElementRef 封裝后的 nativeElement。需要注意的是組件視圖中的 template 模板元素,經過渲染后會被替換成 comment 元素。

ViewContainerRef:用于表示一個視圖容器,可添加一個或多個視圖。通ViewContainerRef 實例,我們可以基于 TemplateRef 實例創建內嵌視圖,并能指定內嵌視圖的插入位置,也可以方便對視圖容器中已有的視圖進行管理。簡而言之,ViewContainerRef 的主要作用是創建和管理內嵌視圖或組件視圖。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

建宁县| 广东省| 临朐县| 富源县| 锡林郭勒盟| 沙湾县| 娄烦县| 英吉沙县| 惠州市| 郑州市| 喀喇| 彭泽县| 嘉义市| 余姚市| 玉溪市| 张家口市| 凤山县| 景泰县| 临西县| 建始县| 郁南县| 莎车县| 阿鲁科尔沁旗| 揭阳市| 永善县| 白银市| 江川县| 雷波县| 金阳县| 监利县| 舒城县| 凉城县| 巴马| 曲松县| 龙海市| 迁安市| 通山县| 香格里拉县| 蚌埠市| 通江县| 出国|