Angular 自定義結(jié)構(gòu)指令

1. <ng-template>元素

import { Component, TemplateRef, ViewContainerRef, ViewChild,
  AfterViewInit } from '@angular/core';
@Component({
  selector: 'app-code404',
  template: `
  <!-- 這里使用一個模板變量,在組件中使用@ViewChild裝飾器獲取模板元素-->
    <ng-template #tpl>
      Big Keriy !
    </ng-template>
  `,
})
export class Code404Component implements AfterViewInit{

  // @ViewChild 裝飾器獲取模板元素
  @ViewChild('tpl')
  tplRef: TemplateRef<any>;
  constructor(private vcRef: ViewContainerRef) {}
  ngAfterViewInit() {
    
    // 使用ViewContainerRef對象的createEmbeddedView方法創(chuàng)建內(nèi)嵌視圖市咽。
    this.vcRef.createEmbeddedView(this.tplRef);
  } }

這樣其實我們在視圖中就得到了一個什么...啊,就是一個'Big Keriy !'的字符串盏阶。

2. ngTemplateOutlet指令

a. ngTemplateOutlet
routerOutlet是一個意思亮蒋,將視圖(<ng-template>標(biāo)簽中的內(nèi)容)放到對應(yīng)的ngTemplateoutlet下面。

import { Component } from '@angular/core';
  @Component({
    selector: 'app-code404',
    template: `
      <ng-template #stpl>
        Hello, Semlinker!
      </ng-template>
      <ng-template #atpl>
        Big Keriy !
      </ng-template>
      <div [ngTemplateOutlet]="atpl"></div>
      <div [ngTemplateOutlet]="stpl"></div>
`, })
  export class Code404Component { }

最終的視圖應(yīng)該是:

Big Keriy !
Hello, Semlinker!

b. ngOutletContex
看名字就知道意思懂傀。
ngTemplateOutlet指令基于TemplateRef對象,在使用ngTemplateOutlet指令時蜡感,可以通過ngTemplateOutletContext屬性來設(shè)置來設(shè)置EmbeddedViewRef上下文對象蹬蚁。可以使用let語法來聲明綁定上下文對象屬性名郑兴。

import { Component, TemplateRef, ViewContainerRef, ViewChild,
  AfterViewInit } from '@angular/core';
@Component({
  selector: 'app-code404',
  template: `
    <!-- 這里的messagey映射到下面context中message 再使用插值表達(dá)式的方式顯示message的值 -->
    <ng-template #stpl let-message="message">
      <p>{{message}}</p>
    </ng-template>
    <!-- 這里的messagey映射到下面context中message , let-msg是一種與語法糖的方式變量名是msg-->
    <ng-template #atpl let-msg="message">
      <p>{{msg}}</p>
    </ng-template>
    <!-- 若不指定變量值那么將顯示 $implicit 的值-->
    <ng-template #otpl let-msg>
      <p>{{msg}}</p>
    </ng-template>
    <div [ngTemplateOutlet]="atpl"
          // 這里ngOutletContext綁定的是context對象
         [ngOutletContext]="context">
    </div>
    <div [ngTemplateOutlet]="stpl"
         [ngOutletContext]="context">
    </div>
    <div [ngTemplateOutlet]="otpl"
         [ngOutletContext]="context">
    </div>
  `,
})
export class Code404Component implements AfterViewInit{
  @ViewChild('tpl')
  tplRef: TemplateRef<any>;
  constructor(private vcRef: ViewContainerRef) {}
  ngAfterViewInit() {
    this.vcRef.createEmbeddedView(this.tplRef);
  }
  context = { message: 'Hello ngOutletContext!',
    $implicit: 'great, Semlinker!' };
    // 這里的$implicit是固定寫法
}

先看輸出的視圖:

Hello ngOutletContext!
Hello ngOutletContext!
Hello, Semlinker!

3. ngComponentOutlet指令

聽著名字就很爽犀斋,這不是插入視圖的,是插入組件的情连!

該指令使用聲明的方式叽粹,動態(tài)加載組件。

先寫組件却舀,里面有兩個虫几。。組件:

  @Component({
    selector: 'alert-success',
    template: `
      <p>Alert success</p>
    `,
  })
  export class AlertSuccessComponent { }
  @Component({
    selector: 'alert-danger',
    template: `
      <p>Alert danger</p>
    `,
  })
  export class AlertDangerComponent { }
  @Component({
    selector: 'my-app',
    template: `
      <h1>Angular version 4</h1>
      <ng-container *ngComponentOutlet="alert"></ng-container>
      <button (click)="changeComponent()">Change component</button>
  `, })
  export class AppComponent {
     alert = AlertSuccessComponent;
    changeComponent() {
      this.alert = AlertDangerComponent;
  } 
}

當(dāng)然挽拔,還需要在模塊中聲明入口:

// app.module.ts
@NgModule({
    // ...
    declarations: [
      AppComponent,
      SignUpComponent,
      AlertSuccessComponent,
      AlertDangerComponent
    ],
    entryComponents: [       // 這里面寫指令中呀用到的組件
      AlertSuccessComponent,
      AlertDangerComponent
],
// ...
})

這樣就可以使用ngComponentOutlet指令來插入組件玩耍了:

<!-- 簡單語法 -->
<ng-container *ngComponentOutlet="componentTypeExpression"></ng-container>

<!-- 完整語法 -->
<ng-container *ngComponentOutlet="componentTypeExpression;
     injector: injectorExpression;
     content: contentNodesExpression;">
</ng-container>

這是一個完整語法簡單的例子:

// ...
@Component({
  selector: 'ng-component-outlet-complete-example',
  template: `
    <ng-container *ngComponentOutlet="CompleteComponent; 
                                      injector: myInjector; 
                                      content: myContent"></ng-container>`
})
class NgTemplateOutletCompleteExample {
  // This field is necessary to expose CompleteComponent to the template.
  CompleteComponent = CompleteComponent;
  myInjector: Injector;
 
  myContent = [[document.createTextNode('Ahoj')], [document.createTextNode('Svet')]];
 
  constructor(injector: Injector) {
    this.myInjector = ReflectiveInjector.resolveAndCreate([Greeter], injector);
  }
}

4. 創(chuàng)建結(jié)構(gòu)指令

也想不出來一個什么好例子辆脸,抄一個例子過來:

// uless.directive.ts

import { Directive, Input, TemplateRef, ViewContainerRef } from '@angular/core';
  @Directive({
      selector: '[exeUnless]'
  })
  export class UnlessDirective {
      @Input('exeUnless')
      set condition(newCondition: boolean) {  // set condition
          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: `
     <h2 *exeUnless="condition">Hello, Semlinker!</h2>
    `,
  })
  export class AppComponent {
    condition: boolean = false;
  }
  
  
  // app.component.ts
  
  import { Component } from '@angular/core';
  @Component({
    selector: 'app-root',
    template: `
     <h2 *exeUnless="condition">Hello, Semlinker!</h2>
    `,
  })
  export class AppComponent {
    condition: boolean = false;
  }

本文部分摘自SemlinkerAngular 4 指令快速入門,感謝作者的分享螃诅。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末啡氢,一起剝皮案震驚了整個濱河市状囱,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌倘是,老刑警劉巖亭枷,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異辨绊,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)匹表,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進(jìn)店門门坷,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人袍镀,你說我怎么就攤上這事默蚌。” “怎么了苇羡?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵绸吸,是天一觀的道長。 經(jīng)常有香客問我设江,道長锦茁,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任叉存,我火速辦了婚禮码俩,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘歼捏。我一直安慰自己稿存,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布瞳秽。 她就那樣靜靜地躺著瓣履,像睡著了一般。 火紅的嫁衣襯著肌膚如雪练俐。 梳的紋絲不亂的頭發(fā)上袖迎,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天,我揣著相機(jī)與錄音腺晾,去河邊找鬼瓢棒。 笑死,一個胖子當(dāng)著我的面吹牛丘喻,可吹牛的內(nèi)容都是我干的脯宿。 我是一名探鬼主播,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼泉粉,長吁一口氣:“原來是場噩夢啊……” “哼连霉!你這毒婦竟也來了榴芳?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤跺撼,失蹤者是張志新(化名)和其女友劉穎窟感,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體歉井,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡柿祈,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了哩至。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片躏嚎。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖菩貌,靈堂內(nèi)的尸體忽然破棺而出卢佣,到底是詐尸還是另有隱情,我是刑警寧澤箭阶,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布虚茶,位于F島的核電站,受9級特大地震影響仇参,放射性物質(zhì)發(fā)生泄漏嘹叫。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一诈乒、第九天 我趴在偏房一處隱蔽的房頂上張望待笑。 院中可真熱鬧,春花似錦抓谴、人聲如沸暮蹂。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽仰泻。三九已至,卻和暖如春滩届,著一層夾襖步出監(jiān)牢的瞬間集侯,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工帜消, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留棠枉,地道東北人。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓泡挺,卻偏偏與公主長得像辈讶,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子娄猫,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容