<p>Message: {{ msg }}</p> <p [innerHTML]="msg"></p>
<!-- 写法一 --> <img src="{{ heroImageUrl }}"> <!-- 写法二,推荐 --> <img [src]="heroImageUrl"> <!-- 写法三 --> <img bind-src="heroImageUrl">
在布尔特性的状况下,它们的存在即暗示为 true
,属性绑定工做起来略有不一样,在这个例子中:javascript
<button [disabled]="isButtonDisabled">Button</button>
若是 isButtonDisabled
的值是 null
、undefined
或 false
,则 disabled
特性甚至不会被包含在渲染出来的 <button>
元素中。css
<p>1 + 1 = {{ 1 + 1 }}</p> <p>{{ num + 1 }}</p> <p>{{ isDone ? '完了' : '没完' }}</p> <p>{{ title.split('').reverse().join('') }}</p> <p [title]="title.split('').reverse().join('')">{{ title }}</p> <ul> <li [id]="'list-' + t.id" *ngFor="let t of todos"> {{ t.title }} </li> </ul>
编写模板表达式所用的语言看起来很像 JavaScript。 不少 JavaScript 表达式也是合法的模板表达式,但不是所有。html
Angular 遵循轻逻辑的设计思路,因此在模板引擎中不能编写很是复杂的 JavaScript 表达式,这里有一些约定:java
=
, +=
, -=
, ...)new
运算符;
或 ,
的链式表达式++
和--
)基本用法:typescript
export class AppComponent { heroes = ['Windstorm', 'Bombasto', 'Magneta', 'Tornado']; }
<p>Heroes:</p> <ul> <li *ngFor="let hero of heroes"> {{ hero }} </li> </ul>
也能够获取 index 索引:bootstrap
<div *ngFor="let hero of heroes; let i=index">{{i + 1}} - {{hero.name}}</div>
<p *ngIf="heroes.length > 3">There are many heroes!</p>
ngIf
和 <ng-template>
<ng-template [ngIf]="condition"><div>...</div></ng-template>
NgSwitch 的语法比较啰嗦,使用频率小一些。api
<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-confused-hero *ngSwitchCase="'confused'" [hero]="currentHero"></app-confused-hero> <app-unknown-hero *ngSwitchDefault [hero]="currentHero"></app-unknown-hero> </div>
事件绑定只须要用圆括号把事件名包起来便可:app
<button (click)="onSave()">Save</button>
能够把事件对象传递到事件处理函数中:curl
<button (click)="onSave($event)">On Save</button>
也能够传递额外的参数(取决于你的业务):ide
<button (click)="onSave($event, 123)">On Save</button>
当事件处理语句比较简单的时候,咱们能够内联事件处理语句:
<button (click)="message = '哈哈哈'">内联事件处理</button>
咱们能够利用 属性绑定 + 事件处理 的方式实现表单文本框双向绑定:
<input [value]="message" (input)="message=$event.target.value" >
事件绑定的另外一种写法,使用 on-
前缀的方式:
<!-- 绑定事件处理函数 --> <button on-click="onSave()">On Save</button>
<p>{{ message }}</p> <input type="text" [(ngModel)]="message">
运行以后你会发现报错了,缘由是使用 ngModel
必须导入 FormsModule
并把它添加到 Angular 模块的 imports
列表中。
导入 FormsModule
并让 [(ngModel)]
可用的代码以下:
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; +++ import { FormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, +++ FormsModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }
经过以上的配置以后,你就能够开心的在 Angular 中使用双向数据绑定了😊。
<textarea cols="30" rows="10" [(ngModel)]="message"></textarea>
<h3>单选框</h3> <input type="checkbox" [(ngModel)]="seen"> <div class="box" *ngIf="seen"></div>
<input type="radio" [value]="0" [(ngModel)]="gender"> 男 <input type="radio" [value]="1" [(ngModel)]="gender"> 女 <p>选中了:{{ gender }}</p>
<select [(ngModel)]="hobby"> <option [value]="0">吃饭</option> <option [value]="1">睡觉</option> <option [value]="2">打豆豆</option> </select> <p>选中的爱好:{{ hobby }}</p>
<!-- standard class attribute setting --> <div class="bad curly special">Bad curly special</div> <!-- reset/override all class names with a binding --> <div class="bad curly special" [class]="badCurly">Bad curly</div> <!-- toggle the "special" class on/off with a property --> <div [class.special]="isSpecial">The class binding is special</div> <!-- binding to `class.special` trumps the class attribute --> <div class="special" [class.special]="!isSpecial">This one is not so special</div>
NgClass
指令接收一个对象,对象的 key
指定 css 类名,value 给定一个布尔值,当布尔值为真则做用该类名,当布尔值为假则移除给类名。
语法规则:
<div [ngClass]="{ css类名: 布尔值, css类名: 布尔值 }">测试文本</div>
基本示例:
.saveable{ font-size: 18px; } .modified { font-weight: bold; } .special{ background-color: #ff3300; }
currentClasses: {}; setCurrentClasses() { // CSS classes: added/removed per current state of component properties this.currentClasses = { 'saveable': this.canSave, 'modified': !this.isUnchanged, 'special': this.isSpecial }; }
<div [ngClass]="currentClasses">This div is initially saveable, unchanged, and special</div>
经过样式绑定,能够设置内联样式。
样式绑定的语法与属性绑定相似。 但方括号中的部分不是元素的属性名,而由style前缀,一个点 (.
)和 CSS 样式的属性名组成。 形如:[style.style-property]
。
<button [style.color]="isSpecial ? 'red': 'green'">Red</button> <!-- 也能够 backgroundColor --> <button [style.background-color]="canSave ? 'cyan': 'grey'" >Save</button>
有些样式绑定中的样式带有单位。在这里,以根据条件用 “em” 和 “%” 来设置字体大小的单位。
<button [style.font-size.em]="isSpecial ? 3 : 1" >Big</button> <button [style.font-size.%]="!isSpecial ? 150 : 50" >Small</button>
虽然这是设置单同样式的好办法,但咱们一般更喜欢使用 NgStyle指令 来同时设置多个内联样式。
currentStyles: {}; setCurrentStyles() { // CSS styles: set per current state of component properties 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 is initially italic, normal weight, and extra large (24px). </div>
ngStyle 这种方式至关于在代码里面写 CSS 样式,比较丑陋,违反了注意点分离的原则,并且未来不太好修改,很是不建议这样写(足够简单的状况除外)。
模板引用变量一般用来引用模板中的某个DOM元素,它还能够引用Angular组件或指令或Web Component。
使用井号 (#) 来声明引用变量。 #phone
的意思就是声明一个名叫phone
的变量来引用<input>
元素。
<input #phone placeholder="phone number">
咱们能够在模板中的任何地方引用模板引用变量。 好比声明在<input>
上的phone
变量就是在模板另外一侧的<button>
上使用的。
<input #phone placeholder="phone number"> <!-- lots of other elements --> <!-- phone refers to the input element; pass its `value` to an event handler --> <button (click)="callPhone(phone.value)">Call</button>
大多数状况下,Angular会把模板引用变量的值设置为声明它的那个元素。在上面例子中,
phone
引用的是表示电话号码的<input>
框。 "拨号"按钮的点击事件处理器把这个input值传给了组件的callPhone
方法。 不过,指令也能够修改这种行为,让这个值引用到别处,好比它自身。NgForm
指令就是这么作的。
模板引用变量使用注意:
模板局部变量 > 指令中的同名变量 > 组件中的同名属性
ref-
前缀代替#
。 下面的例子中就用把fax
变量声明成了ref-fax
而不是#fax
。<input ref-fax placeholder="fax number"> <button (click)="callFax(fax.value)">Fax</button>
在 Angular 中,过滤器也叫管道。它最重要的做用就是用来格式化数据的输出。
举个简单例子:
public currentTime: Date = new Date();
<h1>{{currentTime | date:'yyyy-MM-dd HH:mm:ss'}}</h1>
Angular 一共内置了16个过滤器:https://angular.io/api?type=pipe。
在复杂业务场景中,内置的过滤器确定是不够用的,全部 Angular 也支持自定义过滤器。
管道还有另一个重要的做用就是作国际化。