這篇文章將為大家詳細(xì)講解有關(guān)如何理解Angular中的指令和管道以及服務(wù),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)是專業(yè)的沙坪壩網(wǎng)站建設(shè)公司,沙坪壩接單;提供成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行沙坪壩網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!
Directive
指令是 Angular
提供的操作 DOM
的途徑。指令分為屬性指令和結(jié)構(gòu)指令。
屬性指令:修改現(xiàn)有元素的外觀或行為,使用 []
包裹。
結(jié)構(gòu)指令:增加、刪除 DOM
節(jié)點(diǎn)以修改布局,使用*
作為指令前綴
1.1 內(nèi)置指令
1.1.1 *ngIf
根據(jù)條件渲染 DOM
節(jié)點(diǎn)或移除 DOM
節(jié)點(diǎn)
沒(méi)有更多數(shù)據(jù)
0; then dataList else noData">課程列表 沒(méi)有更多數(shù)據(jù)
1.1.2 [hidden]
根據(jù)條件顯示 DOM
節(jié)點(diǎn)或隱藏 DOM
節(jié)點(diǎn) (display
)
沒(méi)有更多數(shù)據(jù)
1.1.3 *ngFor
遍歷數(shù)據(jù)生成HTML結(jié)構(gòu)
interface List { id: number name: string age: number } list: List[] = [ { id: 1, name: "張三", age: 20 }, { id: 2, name: "李四", age: 30 } ]
identify(index, item){ return item.id; }
1.2 自定義指令
需求:為元素設(shè)置默認(rèn)背景顏色,鼠標(biāo)移入時(shí)的背景顏色以及移出時(shí)的背景顏色
Hello Angular
創(chuàng)建自定義指令
$ ng g d appHover # 全稱 ng generate directive
import { AfterViewInit, Directive, ElementRef, HostListener, Input } from "@angular/core" // 接收參的數(shù)類型 interface Options { bgColor?: string } @Directive({ selector: "[appHover]" }) export class HoverDirective implements AfterViewInit { // 接收參數(shù) @Input("appHover") appHover: Options = {} // 要操作的 DOM 節(jié)點(diǎn) element: HTMLElement // 獲取要操作的 DOM 節(jié)點(diǎn) constructor(private elementRef: ElementRef) { this.element = this.elementRef.nativeElement } // 組件模板初始完成后設(shè)置元素的背景顏色 ngAfterViewInit() { this.element.style.backgroundColor = this.appHover.bgColor || "skyblue" } // 為元素添加鼠標(biāo)移入事件 @HostListener("mouseenter") enter() { this.element.style.backgroundColor = "pink" } // 為元素添加鼠標(biāo)移出事件 @HostListener("mouseleave") leave() { this.element.style.backgroundColor = "skyblue" } }
Pipe
管道的作用是格式化組件模板數(shù)據(jù)。
2.1 內(nèi)置管道
date
日期格式化
currency
貨幣格式化
uppercase
轉(zhuǎn)大寫(xiě)
lowercase
轉(zhuǎn)小寫(xiě)
json
格式化json
數(shù)據(jù)
{{ date | date: "yyyy-MM-dd" }}
2.2 自定義管道
需求:指定字符串不能超過(guò)規(guī)定的長(zhǎng)度
// 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 : 10; return value.substr(0, actualLimit) + '...'; } }
// app.module.ts import { SummaryPipe } from './summary.pipe' @NgModule({ declarations: [SummaryPipe] });
Service
3.1 創(chuàng)建服務(wù)
$ ng g s services/TestService --skip-tests
import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class TestService { }
export class AppComponent { constructor (private testService: TestService) {} }
使用服務(wù)可以輕松實(shí)現(xiàn)跨模塊跨組件共享數(shù)據(jù),這取決于服務(wù)的作用域。
在根注入器中注冊(cè)服務(wù),所有模塊使用同一個(gè)服務(wù)實(shí)例對(duì)象
import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class CarListService { }
在模塊級(jí)別注冊(cè)服務(wù),該模塊中的所有組件使用同一個(gè)服務(wù)實(shí)例對(duì)象
import { Injectable } from '@angular/core'; import { CarModule } from './car.module'; @Injectable({ providedIn: CarModule, }) export class CarListService { }
import { CarListService } from './car-list.service'; @NgModule({ providers: [CarListService], }) export class CarModule { }
在組件級(jí)別注冊(cè)服務(wù),該組件及其子組件使用同一個(gè)服務(wù)實(shí)例對(duì)象
import { Component } from '@angular/core'; import { CarListService } from '../car-list.service.ts' @Component({ selector: 'app-car-list', templateUrl: './car-list.component.html', providers: [ CarListService ] })
關(guān)于如何理解Angular中的指令和管道以及服務(wù)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。