【CuteJavaScript】Angular6入門項目(4.改造組件和添加HTTP服務)

本文目錄

本項目源碼放在github

六、改造組件

從這裏開始,我們要使用RxJS來改造組件和添加新功能了,讓整個項目更加完善。

1.添加歷史記錄組件

  • 創建HistoryComponent組件
ng g component hostory

然後在app.component.html文件夾中添加組件:

<!-- app.component.html -->
<app-history></app-history>

2.添加增刪改查功能

這裏我們要開始做書本的增刪改查功能,需要先創建一個HistoryService服務,方便我們實現這幾個功能:

  • 創建HistoryService服務
ng g service history

然後在生成的ts文件中,增加addclear方法,add方法用來添加歷史記錄到history數組中,clear方法則是清空history數組:

// history.service.ts
export class HistoryService {
    history: string[] = [];
    add(history: string){
        this.history.push(history);
    }
    clear(){
        this.history = [];
    }
}
  • 使用HistoryService服務

在將這個服務,注入到BooksService中,並改造getBooks方法:

// books.service.ts
import { HistoryService } from './history.service';
constructor(
    private historyservice: HistoryService
) { }
getBooks(): void{
    this.historyservice.add('請求書本數據')
    this.booksservice.getBookList()
        .subscribe(books => this.books = books);
}

也可以用相同方法,在IndexComponent中添加訪問首頁書本列表的記錄。

// index.component.ts
import { HistoryService } from '../history.service';
constructor(
    private booksservice: BooksService,
    private historyservice: HistoryService
) { }
getBooks(): void{
    this.historyservice.add('訪問首頁書本列表');
    this.booksservice.getBookList()
        .subscribe(books => this.books = books);
}

接下來,將我們的HistoryService注入到HistoryComponent中,然後才能將歷史數據顯示到頁面上:

// history.component.ts
import { HistoryService } from '../history.service';
export class HistoryComponent implements OnInit {
    constructor(private historyservice: HistoryService) { }
    ngOnInit() {}
}
<!-- history.component.html -->
<div *ngIf="historyservice.history.length">
    <h2>操作歷史:</h2>
    <div>
        <button class="clear"
        (click)="historyservice.clear()"
        >清除</button>
        <div *ngFor="let item of historyservice.history">{{item}}</div>
    </div>
</div>

代碼解釋
*ngIf="historyservice.history.length",是爲了防止還沒有拿到歷史數據,導致後面的報錯。
(click)="historyservice.clear()", 綁定我們服務中的clear事件,實現清除緩存。
*ngFor="let item of historyservice.history",將我們的歷史數據渲染到頁面上。

到了這一步,就能看到歷史數據了,每次也換到首頁,都會增加一條。

圖片5-1

接下來,我們要在書本詳情頁也加上歷史記錄的統計,導入文件,注入服務,然後改造getBooks方法,實現歷史記錄的統計:

// detail.component.ts
import { HistoryService } from '../history.service';

export class DetailComponent implements OnInit {
    constructor(
        private route: ActivatedRoute,
        private location: Location,
        private booksservice: BooksService,
        private historyservice: HistoryService
    ) { }
    //...
    getBooks(id: number): void {
        this.books = this.booksservice.getBook(id);
        this.historyservice.add(`查看書本${this.books.title},id爲${this.books.id}`);
        console.log(this.books)
    }
}

圖片5-2

這時候就可以在歷史記錄中,看到這些操作的記錄了,並且清除按鈕也正常使用。

七、HTTP改造

原本我只想寫到上一章,但是想到,我們實際開發中,哪有什麼本地數據,基本上數據都是要從服務端去請求,所以這邊也有必要引入這一張,模擬實際的HTTP請求。

1.引入HTTP

在這一章,我們使用Angular提供的 HttpClient 來添加一些數據持久化特性。
然後實現對書本數據進行獲取,增加,修改,刪除和查找功能。

HttpClient是Angular通過 HTTP 與遠程服務器通訊的機制。

這裏我們爲了讓HttpClient在整個應用全局使用,所以將HttpClient導入到根模塊app.module.ts中,然後把它加入 @NgModule.imports 數組:

import { HttpClientModule } from '@angular/common/http';
@NgModule({
    //...
    imports: [
        BrowserModule,
        AppRoutingModule,
        HttpClientModule
    ],
    //...
})

這邊我們使用 內存 Web API(In-memory Web API) 模擬出的遠程數據服務器通訊。
注意: 這個內存 Web API 模塊與 Angular 中的 HTTP 模塊無關。

通過下面命令來安裝:

npm install angular-in-memory-web-api --save

然後在app.module.ts中導入 HttpClientInMemoryWebApiModuleInMemoryDataService 類(後面創建):

// app.module.ts
import { HttpClientInMemoryWebApiModule } from 'angular-in-memory-web-api';
import { InMemoryDataService }  from './in-memory-data.service';
@NgModule({
    // ...
    imports: [
        // ...
        HttpClientInMemoryWebApiModule.forRoot(
        InMemoryDataService, {dataEncapsulation:false}
        )
    ],
    // ...
})
export class AppModule { }

知識點:
forRoot() 配置方法接受一個 InMemoryDataService 類(初期的內存數據庫)作爲參數。

然後我們要創建InMemoryDataService類:

ng g service InMemoryData

並將生成的in-memory-data.service.ts修改爲:

// in-memory-data.service.ts
import { Injectable } from '@angular/core';
import { InMemoryDbService } from 'angular-in-memory-web-api';
import { Books } from './books';
@Injectable({
  providedIn: 'root'
})
export class InMemoryDataService implements InMemoryDbService {
  createDb(){
    const books = [
      {
          id: 1, 
          url: 'https://img3.doubanio.com/view/subject/m/public/s29988481.jpg',
          title: '像火焰像灰燼',
          author: '程姬',
      },
      // 省略其他9條數據
    ];
    return {books};
  }
  constructor() { }
}

這裏先總結InMemoryDbService所提供的RESTful API,後面都要用到:
例如如果urlapi/books,那麼

  • 查詢所有成員:以GET方法訪問api/books
  • 查詢某個成員:以GET方法訪問api/books/id,比如id1,那麼訪問api/books/1
  • 更新某個成員:以PUT方法訪問api/books/id
  • 刪除某個成員:以DELETE方法訪問api/books/id
  • 增加一個成員:以POST方法訪問api/books

2.通過HTTP請求數據

現在要爲接下來的網絡請求做一些準備,先在books.service.ts中引入HTTP符號,然後注入HttpClient並改造:

// books.service.ts
import { HttpClient, HttpHeaders} from '@angular/common/http';
// ...
export class BooksService {
    constructor(
        private historyservice: HistoryService,
        private http: HttpClient
    ) { }
    private log(histories: string){
        this.historyservice.add(`正在執行:${histories}`)
    }
    private booksUrl = 'api/books'; // 提供一個API供調用
    // ...
}

這裏我們還新增一個私有方法log和一個私有變量booksUrl

接下來我們要開始發起http請求數據,開始改造getBookList方法:

// books.service.ts
// ...
getBookList(): Observable<Books[]> {
    this.historyservice.add('請求書本數據')
    return this.http.get<Books[]>(this.booksUrl);
}
// ...

這裏我們使用 http.get 替換了 of,其它沒修改,但是應用仍然在正常工作,這是因爲這兩個函數都返回了 Observable<Hero[]>

實際開發中,我們還需要考慮到請求的錯誤處理,要捕獲錯誤,我們就要使用 RxJS 的 catchError() 操作符來建立對 Observable 結果的處理管道(pipe)。

我們引入catchError 並改造原本getBookList方法:

// books.service.ts
getBookList(): Observable<Books[]> {
    this.historyservice.add('請求書本數據')
    return this.http.get<Books[]>(this.booksUrl).pipe(
        catchError(this.handleError<Books[]>('getHeroes', []))
    );
}
private handleError<T> (operation = 'operation', result?: T) {
    return (error: any): Observable<T> => {
        this.log(`${operation} 失敗: ${error.message}`); // 發出錯誤通知
        return of(result as T); // 返回空結果避免程序出錯
    };
}

知識點
.pipe() 方法用來擴展 Observable 的結果。
catchError() 操作符會攔截失敗的 Observable。並把錯誤對象傳給錯誤處理器,錯誤處理器會處理這個錯誤。
handleError() 錯誤處理函數做了兩件事,發出錯誤通知和返回空結果避免程序出錯。

這裏還需要使用tap操作符改造getBookList方法,來窺探Observable數據流,它會查看Observable的值,然後我們使用log方法,記錄一條歷史記錄。
tap 回調不會改變這些值本身。

// books.service.ts
getBookList(): Observable<Books[]> {
    return this.http.get<Books[]>(this.booksUrl)
        .pipe(
            tap( _ => this.log('請求書本數據')),
            catchError(this.handleError<Books[]>('getHeroes', []))
        );
}

3.通過HTTP修改數據

這裏我們需要在原來DetailComponent上面,添加一個輸入框、保存按鈕和返回按鈕,就像這樣:

<!-- detail.component.html -->
<!-- 前面代碼省略 -->
<div>
    <h2>修改信息:</h2>
    <label>新標題:
        <input [(ngModel)]="books.title" placeholder="請輸入新標題">
    </label>
    <button (click)="save()">保存</button>
    <button (click)="goBack()">返回</button>
</div>

這邊切記一點,一定要在app.module.ts中引入 FormsModule模塊,並在@NgModuleimports中引入,不然要報錯了。

// app.module.ts
// ...
import { FormsModule } from '@angular/forms'; 
@NgModule({
    // ...
    imports: [
        // ...
        FormsModule
    ],
    // ...
})

input框綁定書本的標題books.title,而保存按鈕綁定一個save()方法,這裏還要實現這個方法:

// detail.component.ts
save(): void {
    this.historyservice.updateBooks(this.books)
        .subscribe(() => this.goBack());
}
goBack(): void {
    this.location.back();
}

這裏通過調用BooksServiceupdateBooks方法,將當前修改後的書本信息修改到源數據中,這裏我們需要去books.service.ts中添加updateBooks方法:

// books.service.ts
// ...
updateBooks(books: Books): Observable<any>{
    return this.http.put(this.booksUrl, books, httpOptions).pipe(
        tap(_ => this.log(`修改書本的id是${books.id}`)),
        catchError(this.handleError<Books>(`getBooks請求是id爲${books.id}`))
    )
}
// ...

知識點
HttpClient.put() 方法接受三個參數:URL 地址要修改的數據其他選項
httpOptions 常量需要定義在@Injectable修飾器之前。

現在,我們點擊首頁,選擇一本書進入詳情,修改標題然後保存,會發現,首頁上這本書的名稱也會跟着改變呢。這算是好了。

4.通過HTTP增加數據

我們可以新增一個頁面,並添加上路由和按鈕:

ng g component add

添加路由:

// app-routing.module.ts
// ...
import { AddComponent } from './add/add.component';

const routes: Routes = [
  { path: '', redirectTo:'/index', pathMatch:'full' },
  { path: 'index', component: IndexComponent},
  { path: 'detail/:id', component: DetailComponent},
  { path: 'add', component: AddComponent},
]

添加路由入口:

<!-- app.component.html -->
<!-- 省略一些代碼 -->
<a routerLink="/add">添加書本</a>

編輯添加書本的頁面:

<!-- add.component.html -->
<div class="add">
    <h2>添加書本:</h2>
    <label>標題:
        <input [(ngModel)]="books.title" placeholder="請輸入標題">
    </label>
    <label>作者:
        <input [(ngModel)]="books.author" placeholder="請輸入作者">
    </label>
    <label>書本id:
        <input [(ngModel)]="books.id" placeholder="請輸入書本id">
    </label>
    <label>封面地址:
        <input [(ngModel)]="books.url" placeholder="請輸入封面地址">
    </label>
    <div><button (click)="add(books)">添加</button></div>
</div>

初始化添加書本的數據:

// add.component.ts
// ...
import { Books } from '../books';
import { BooksService } from '../books.service';
import { HistoryService } from '../history.service';
import { Location } from '@angular/common';
export class AddComponent implements OnInit {
    books: Books = {
        id: 0,
        url: '',
        title: '',
        author: ''
    }
    constructor(
        private location: Location,
        private booksservice: BooksService,
        private historyservice: HistoryService
    ) { }
    ngOnInit() {}
    add(books: Books): void{
        books.title = books.title.trim();
        books.author = books.author.trim();
        this.booksservice.addBooks(books)
        .subscribe( book => {
            this.historyservice.add(`新增書本${books.title},id爲${books.id}`);
            this.location.back();
        });
    }
}

然後在books.service.ts中添加addBooks方法,來添加一本書本的數據:

// books.service.ts
addBooks(books: Books): Observable<Books>{
    return this.http.post<Books>(this.booksUrl, books, httpOptions).pipe(
        tap((newBook: Books) => this.log(`新增書本的id爲${newBook.id}`)),
        catchError(this.handleError<Books>('添加新書'))
    );
}

現在就可以正常添加書本啦。

圖片5-3

5.通過HTTP刪除數據

這裏我們先爲每個書本後面添加一個刪除按鈕,並綁定刪除事件delete

<!-- books.component.html -->
<!-- 省略一些代碼 -->
<span class="delete" (click)="delete(list)">X</span>
// books.component.ts
import { BooksService } from '../books.service';
export class BooksComponent implements OnInit {
  @Input() list: Books;
  constructor(
    private booksservice: BooksService
  ) { }
  // ...
  delete(books: Books): void {
    this.booksservice.deleteBooks(books)
      .subscribe();
  }
}

然後還要再books.service.ts中添加deleteBooks方法來刪除:

// books.service.ts
deleteBooks(books: Books): Observable<Books>{
    const id = books.id;
    const url = `${this.booksUrl}/${id}`;
    return this.http.delete<Books>(url, httpOptions).pipe(
        tap(_ => this.log(`刪除書本${books.title},id爲${books.id}`)),
        catchError(this.handleError<Books>('刪除書本'))
    );
}

這裏需要在刪除書本結束後,通知IndexComponent將數據列表中的這條數據刪除,這裏還需要再瞭解一下Angular 父子組件數據通信
然後我們在父組件IndexComponent上添加change事件監聽,並傳入本地的funChange

<!-- index.component.html -->
<app-books *ngFor="let item of books" [list]="item"
    (change) = "funChange(item, $event)"
></app-books>

在對應的index.component.ts中添加funChange方法:

// index.component.ts
funChange(books, $event){
    this.books = this.books.filter(h => h.id !== books.id);
}

再來,我們在子組件BooksComponent上多導入OutputEventEmitter,並添加@Output()修飾器和調用emit

import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
export class BooksComponent implements OnInit {
    // ... 
    @Output()
    change = new EventEmitter()
    // ... 
    delete(books: Books): void {
        this.booksservice.deleteBooks(books)
        .subscribe(()=>{
            this.change.emit(books);
        });
    }
}

這樣就實現了我們父子組件之間的事件傳遞啦,現在我們的頁面還是正常運行,並且刪除一條數據後,頁面數據會更新。

6.通過HTTP查找數據

還是在books.service.ts,我們添加一個方法getBooks,來實現通過ID來查找指定書本,因爲我們是通過ID查找,所以返回的是單個數據,這裏就是Observable<Books>類型:

// books.service.ts
getBooks(id: number): Observable<Books>{
    const url = `${this.booksUrl}/${id}`;
    return this.http.get<Books>(url).pipe(
        tap( _ => this.log(`請求書本的id爲${id}`)),
        catchError(this.handleError<Books>(`getBooks請求是id爲${id}`))
    )
}

注意,這裏 getBooks 會返回 Observable<Books>,是一個可觀察的單個對象,而不是一個可觀察的對象數組。

八、結語

這個項目其實很簡單,但是我還是一步一步的寫下來,一方面讓自己更熟悉Angular,另一方面也是希望能幫助到更多朋友哈~
最終效果:

圖片結果

本部分內容到這結束

Author 王平安
E-mail [email protected]
博 客 www.pingan8787.com
微 信 pingan8787
每日文章推薦 https://github.com/pingan8787...
JS小冊 js.pingan8787.com
微信公衆號 前端自習課

前端自習課

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章