指令是 Angular 提供的操作 DOM
的途径。指令分为属性指令
和结构指令
。
属性指令:修改现有元素的外观或行为,使用 []
包裹。
结构指令:增加、删除 DOM 节点以修改布局,使用*
作为指令前缀
*ngIf
根据条件渲染
DOM 节点或移除
DOM 节点。
<div *ngIf="data.length == 0">没有更多数据div>
<div *ngIf="data.length > 0; then dataList else noData">div>
<ng-template #dataList>课程列表ng-template>
<ng-template #noData>没有更多数据ng-template>
ng-template
是用来定义模板的,当使用 ng-template
定义好一个模板之后,可以用 ng-container
和 templateOutlet
指令来进行使用。
<ng-template #loading>
<button (click)="login()">loginbutton>
<button (click)="sigup()">sigupbutton>
ng-template>
<ng-container *ngTemplateOutlet="loading">
ng-container>
[hidden]
根据条件显示
DOM 节点或隐藏
DOM 节点 (display)。
<div [hidden]="data.length == 0">课程列表div>
<div [hidden]="data.length > 0">没有更多数据div>
*ngFor
遍历数据生成HTML结构
interface List {
id: number
name: string
age: number
}
list: List[] = [
{ id: 1, name: "张三", age: 20 },
{ id: 2, name: "李四", age: 30 }
]
<li
*ngFor="
let item of list;
let i = index;
let isEven = even;
let isOdd = odd;
let isFirst = first;
let isLast = last;
"
>
li>
<li *ngFor="let item of list; trackBy: identify">li>
identify(index, item){
return item.id;
}
需求:为元素设置默认背景颜色,鼠标移入时的背景颜色以及移出时的背景颜色。
<div [appHover]="{ bgColor: 'skyblue' }">Hello Angulardiv>
import { AfterViewInit, Directive, ElementRef, HostListener, Input } from "@angular/core"
// 接收参的数类型
interface Options {
bgColor?: string
}
@Directive({
selector: "[appHover]"
})
export class HoverDirective implements AfterViewInit {
// 接收参数
@Input("appHover") appHover: Options = {}
// 要操作的 DOM 节点
element: HTMLElement
// 获取要操作的 DOM 节点
constructor(private elementRef: ElementRef) {
this.element = this.elementRef.nativeElement
}
// 组件模板初始完成后设置元素的背景颜色
ngAfterViewInit() {
this.element.style.backgroundColor = this.appHover.bgColor || "skyblue"
}
// 为元素添加鼠标移入事件
@HostListener("mouseenter") enter() {
this.element.style.backgroundColor = "pink"
}
// 为元素添加鼠标移出事件
@HostListener("mouseleave") leave() {
this.element.style.backgroundColor = "skyblue"
}
}
管道的作用是格式化组件模板数据
。
date 日期格式化
currency 货币格式化
uppercase 转大写
lowercase 转小写
json 格式化 json 数据
{{ date | date: "yyyy-MM-dd" }}
需求:指定字符串不能超过规定的长度
{{'这是一个测试' | summary: 3}}
// summary.pipe.ts
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'summary'
});
export class SummaryPipe implements PipeTransform {
transform (value: string, limit?: number) {
if (!value) return null;
let actualLimit = (limit) ? limit : 50;
return value.substr(0, actualLimit) + '...';
}
}
// app.module.ts
import { SummaryPipe } from './summary.pipe'
@NgModule({
declarations: [
SummaryPipe
]
});
<app-favorite [isFavorite]="true">app-favorite>
// favorite.component.ts
import { Input } from '@angular/core';
export class FavoriteComponent {
@Input() isFavorite: boolean = false;
}
注意:在属性的外面加 []
表示绑定动态值,在组件内接收后是布尔类型,不加 []
表示绑定普通值,在组件内接收后是字符串类型
。
<app-favorite [is-Favorite]="true">app-favorite>
import { Input } from '@angular/core';
export class FavoriteComponent {
@Input("is-Favorite") isFavorite: boolean = false
}
需求:在子组件中通过点击按钮将数据传递给父组件
<button (click)="onClick()">clickbutton>
// 子组件类
import { EventEmitter, Output } from "@angular/core"
export class FavoriteComponent {
@Output() change = new EventEmitter()
onClick() {
this.change.emit({ name: "张三" })
}
}
<app-favorite (change)="onChange($event)">app-favorite>
// 父组件类
export class AppComponent {
onChange(event: { name: string }) {
console.log(event)
}
}
挂载阶段的生命周期函数只在挂载阶段执行一次,数据更新时不再执行。
constructor
Angular 在实例化组件类时执行, 可以用来接收 Angular 注入的服务实例对象。
export class ChildComponent {
constructor (private test: TestService) {
console.log(this.test) // "test"
}
}
ngOnInit
在首次接收到输入属性值后执行,在此处可以执行请求操作。
<app-child name="张三">app-child>
export class ChildComponent implements OnInit {
@Input("name") name: string = ""
ngOnInit() {
console.log(this.name) // "张三"
}
}
ngAfterContentInit
当内容投影初始渲染完成后调用。
<app-child>
<div #box>Hello Angulardiv>
app-child>
export class ChildComponent implements AfterContentInit {
@ContentChild("box") box: ElementRef<HTMLDivElement> | undefined
ngAfterContentInit() {
console.log(this.box) // Hello Angular
}
}
ngAfterViewInit
当组件视图渲染完成后调用。
<p #p>app-child worksp>
export class ChildComponent implements AfterViewInit {
@ViewChild("p") p: ElementRef<HTMLParagraphElement> | undefined
ngAfterViewInit () {
console.log(this.p) // app-child works
}
}
ngOnChanges
基本数据类型值变化
<app-child [name]="name" [age]="age">app-child>
<button (click)="change()">changebutton>
export class AppComponent {
name: string = "张三";
age: number = 20
change() {
this.name = "李四"
this.age = 30
}
}
export class ChildComponent implements OnChanges {
@Input("name") name: string = ""
@Input("age") age: number = 0
ngOnChanges(changes: SimpleChanges) {
console.log("基本数据类型值变化可以被检测到")
}
}
引用数据类型变化
<app-child [person]="person">app-child>
<button (click)="change()">changebutton>
export class AppComponent {
person = { name: "张三", age: 20 }
change() {
this.person = { name: "李四", age: 30 }
}
}
export class ChildComponent implements OnChanges {
@Input("person") person = { name: "", age: 0 }
ngOnChanges(changes: SimpleChanges) {
console.log("对于引用数据类型, 只能检测到引用地址发生变化, 对象属性变化不能被检测到")
}
}
ngDoCheck:主要用于调试,只要输入属性发生变化,不论是基本数据类型还是引用数据类型还是引用数据类型中的属性变化,都会执行。
ngAfterContentChecked:内容投影更新完成后执行。
ngAfterViewChecked:组件视图更新完成后执行。
ngOnDestroy
当组件被销毁之前调用, 用于清理操作。
export class HomeComponent implements OnDestroy {
ngOnDestroy() {
console.log("组件被卸载")
}
}