angular4笔记系列之内置指令

发布时间:2019-07-14 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了angular4笔记系列之内置指令脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

内置指令

内置属性型指令

属性型指令会监听和修改其它HTML元素或组件的行为、元素属性(Attribute)、DOM属性(Property)。

NgClass

形式:[ngClass]="statement"
通过绑定到NgClass,可以同时添加或移除多个类。

setCurrentClasses() {
  this.currentClasses =  {
    'saveable': this.canSave,
    'modified': !this.isUnchanged,
    'special':  this.isSpecial
  };
}

<div [ngClass]="currentClasses">This div</div>
NgStyle

形式:[ngStyle]="statement"
NgStyle绑定可以同时设置多个内联样式。

setCurrentStyles() {
  this.currentStyles = {
    'font-style':  this.canSave      ? 'italic' : 'normal',
    'font-weight': !this.isUnchanged ? 'bold'   : 'normal',
    'font-size':   this.isSpecial    ? '24px'   : '12px'
  };
}

<div [ngStyle]="currentStyles">This div</div>
NgModel

形式:[(ngModel)]="statement"
使用[(ngModel)]双向绑定到表单元素。

<input [(ngModel)]="currentHero.name">
使用 ngModel 时需要 FormsModule

内置结构型指令

NgIf

形式:*ngIf="statement"

<app-hero-detail *ngIf="isActive"></app-hero-detail>
NgFor

形式:*ngFor="statement"

<div *ngFor="let hero of heroes">{{hero.name}}</div>
NgSwitch

形式:[ngSwitch]="statement"

<div [ngSwitch]="currentHero.emotion">
  <app-happy-hero *ngSwitchCase="'happy'" [hero]="currentHero"></app-happy-hero>
  <app-sad-hero *ngSwitchCase="'sad'" [hero]="currentHero"></app-sad-hero>
  <app-unknown-hero *ngSwitchDefault [hero]="currentHero"></app-unknown-hero>
</div>
NgSwitch实际上包括三个相互协作的指令:NgSwitch、NgSwitchCase 和 NgSwitchDefault

模板引用变量 ( #VAR )

模板引用变量通常用来引用模板中的某个DOM元素,它还可以引用Angular组件或指令或Web component

<input #phone placeholder="phone number">

<button (click)="callPhone(phone.value)">Call</button>

脚本宝典总结

以上是脚本宝典为你收集整理的angular4笔记系列之内置指令全部内容,希望文章能够帮你解决angular4笔记系列之内置指令所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。