The Internet Archive discovers and captures web pages through many different web crawls.
At any given time several distinct crawls are running, some for months, and some every day or longer.
View the web archive through the Wayback Machine.
Content crawled via the Wayback Machine Live Proxy mostly by the Save Page Now feature on web.archive.org.
Liveweb proxy is a component of Internet Archive’s wayback machine project. The liveweb proxy captures the content of a web page in real time, archives it into a ARC or WARC file and returns the ARC/WARC record back to the wayback machine to process. The recorded ARC/WARC file becomes part of the wayback machine in due course of time.
TIMESTAMPS
The Wayback Machine - https://web.archive.org/web/20161017082133/https://angular.io/docs/ts/latest/tutorial/toh-pt6.html
HTTP
We convert our service and components to use Angular's HTTP service
Getting and Saving Data
Our stakeholders appreciate our progress.
Now they want to get the hero data from a server, let users add, edit, and delete heroes,
and save these changes back to the server.
In this chapter we teach our application to make the corresponding HTTP calls to a remote server's web API.
Run the for this part.
Where We Left Off
In the previous chapter, we learned to navigate between the dashboard and the fixed heroes list, editing a selected hero along the way.
That's our starting point for this chapter.
Keep the app transpiling and running
Open a terminal/console window and enter the following command to
start the TypeScript compiler, start the server, and watch for changes:
npm start
The application runs and updates automatically as we continue to build the Tour of Heroes.
Providing HTTP Services
The HttpModule is not a core Angular module.
It's Angular's optional approach to web access and it exists as a separate add-on module called @angular/http,
shipped in a separate script file as part of the Angular npm package.
Fortunately we're ready to import from @angular/http because systemjs.config configured SystemJS to load that library when we need it.
Register for HTTP services
Our app will depend upon the Angular http service which itself depends upon other supporting services.
The HttpModule from @angular/http library holds providers for a complete set of HTTP services.
We should be able to access these services from anywhere in the application.
So we register them all by adding HttpModule to the imports list of the AppModule where we
bootstrap the application and its root AppComponent.
app/app.module.ts (v1)
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { DashboardComponent } from './dashboard.component';
import { HeroesComponent } from './heroes.component';
import { HeroDetailComponent } from './hero-detail.component';
import { HeroService } from './hero.service';
@NgModule({
imports: [
BrowserModule,
FormsModule,
HttpModule,
AppRoutingModule
],
declarations: [
AppComponent,
DashboardComponent,
HeroDetailComponent,
HeroesComponent,
],
providers: [ HeroService ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
Notice that we supply HttpModule as part of the imports array in root NgModule AppModule.
Simulating the web API
We recommend registering application-wide services in the root
AppModuleproviders. Here we're
registering in main for a special reason.
Our application is in the early stages of development and far from ready for production.
We don't even have a web server that can handle requests for heroes.
Until we do, we'll have to fake it.
We're going to trick the HTTP client into fetching and saving data from
a mock service, the in-memory web API.
The application itself doesn't need to know and
shouldn't know about this. So we'll slip the in-memory web API into the
configuration above the AppComponent.
Here is a version of app/app.module.ts that performs this trick:
app/app.module.ts (v2)
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AppRoutingModule } from './app-routing.module';
// Imports for loading & configuring the in-memory web api
import { InMemoryWebApiModule } from 'angular-in-memory-web-api/in-memory-web-api.module';
import { InMemoryDataService } from './in-memory-data.service';
import { AppComponent } from './app.component';
import { DashboardComponent } from './dashboard.component';
import { HeroesComponent } from './heroes.component';
import { HeroDetailComponent } from './hero-detail.component';
import { HeroService } from './hero.service';
@NgModule({
imports: [
BrowserModule,
FormsModule,
HttpModule,
InMemoryWebApiModule.forRoot(InMemoryDataService),
AppRoutingModule
],
declarations: [
AppComponent,
DashboardComponent,
HeroDetailComponent,
HeroesComponent,
],
providers: [ HeroService ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
We're importing the InMemoryWebApiModule and adding it to the module imports.
The InMemoryWebApiModule replaces the default Http client backend —
the supporting service that talks to the remote server —
with an in-memory web API alternative service.
This file replaces the mock-heroes.ts which is now safe to delete.
This chapter is an introduction to the Angular HTTP library.
Please don't be distracted by the details of this backend substitution. Just follow along with the example.
Learn more later about the in-memory web API in the HTTP client chapter.
Remember, the in-memory web API is only useful in the early stages of development and for demonstrations such as this Tour of Heroes.
Skip it when you have a real web API server.
We returned a Promise resolved with mock heroes.
It may have seemed like overkill at the time, but we were anticipating the
day when we fetched heroes with an HTTP client and we knew that would have to be an asynchronous operation.
That day has arrived! Let's convert getHeroes() to use HTTP.
app/hero.service.ts (updated getHeroes and new class members)
private heroesUrl = 'app/heroes'; // URL to web api
constructor(private http: Http) { }
getHeroes(): Promise<Hero[]> {
return this.http.get(this.heroesUrl)
.toPromise()
.then(response => response.json().data as Hero[])
.catch(this.handleError);
}
Our updated import statements are now:
app/hero.service.ts (updated imports)
import { Injectable } from '@angular/core';
import { Headers, Http } from '@angular/http';
import 'rxjs/add/operator/toPromise';
import { Hero } from './hero';
Refresh the browser, and the hero data should be successfully loaded from the
mock server.
HTTP Promise
We're still returning a Promise but we're creating it differently.
The Angular http.get returns an RxJS Observable.
Observables are a powerful way to manage asynchronous data flows.
We'll learn about Observables later in this chapter.
For now we get back on familiar ground by immediately
converting that Observable to a Promise using the toPromise operator.
.toPromise()
Unfortunately, the Angular Observable doesn't have a toPromise operator ...
not out of the box.
The Angular Observable is a bare-bones implementation.
There are scores of operators like toPromise that extend Observable with useful capabilities.
If we want those capabilities, we have to add the operators ourselves.
That's as easy as importing them from the RxJS library like this:
import 'rxjs/add/operator/toPromise';
Extracting the data in the then callback
In the promise's then callback we call the json method of the HTTP Response to extract the
data within the response.
.then(response => response.json().data as Hero[])
That response JSON has a single data property.
The data property holds the array of heroes that the caller really wants.
So we grab that array and return it as the resolved Promise value.
Pay close attention to the shape of the data returned by the server.
This particular in-memory web API example happens to return an object with a data property.
Your API might return something else. Adjust the code to match your web API.
The caller is unaware of these machinations. It receives a Promise of heroes just as it did before.
It has no idea that we fetched the heroes from the (mock) server.
It knows nothing of the twists and turns required to convert the HTTP response into heroes.
Such is the beauty and purpose of delegating data access to a service like this HeroService.
Error Handling
At the end of getHeroes() we catch server failures and pass them to an error handler:
.catch(this.handleError);
This is a critical step!
We must anticipate HTTP failures as they happen frequently for reasons beyond our control.
private handleError(error: any): Promise<any> {
console.error('An error occurred', error); // for demo purposes only
return Promise.reject(error.message || error);
}
In this demo service we log the error to the console; we would do better in real life.
We've also decided to return a user friendly form of the error to
the caller in a rejected promise so that the caller can display a proper error message to the user.
Unchanged getHeroes API
Although we made significant internal changes to getHeroes(), the public signature did not change.
We still return a Promise. We won't have to update any of the components that call getHeroes().
Our stakeholders are thrilled with the added flexibility from the API integration.
Now they want the ability to create and delete heroes.
Let's see first what happens when we try to update a hero's details.
Update hero details
We can edit a hero's name already in the hero detail view. Go ahead and try
it. As we type, the hero name is updated in the view heading.
But when we hit the Back button, the changes are lost!
Updates weren't lost before, what's happening?
When the app used a list of mock heroes, changes were made directly to the
hero objects in the single, app-wide shared list. Now that we are fetching data
from a server, if we want changes to persist, we'll need to write them back to
the server.
Save hero details
Let's ensure that edits to a hero's name aren't lost. Start by adding,
to the end of the hero detail template, a save button with a click event
binding that invokes a new component method named save:
app/hero-detail.component.html (save)
<button (click)="save()">Save</button>
The save method persists hero name changes using the hero service
update method and then navigates back to the previous view:
We identify which hero the server should update by encoding the hero id in
the URL. The put body is the JSON string encoding of the hero, obtained by
calling JSON.stringify. We identify the body content type
(application/json) in the request header.
Refresh the browser and give it a try. Changes to hero names should now persist.
Add a hero
To add a new hero we need to know the hero's name. Let's use an input
element for that, paired with an add button.
Insert the following into the heroes component HTML, first thing after
the heading:
In addition to calling the component's delete method, the delete button
click handling code stops the propagation of the click event — we
don't want the <li> click handler to be triggered because that would
select the hero that we are going to delete!
The logic of the delete handler is a bit trickier:
Of course, we delegate hero deletion to the hero service, but the component
is still responsible for updating the display: it removes the deleted hero
from the array and resets the selected hero if necessary.
We want our delete button to be placed at the far right of the hero entry.
This extra CSS accomplishes that:
Refresh the browser and try the new delete functionality.
Observables
Each Http service method returns an Observable of HTTP Response objects.
Our HeroService converts that Observable into a Promise and returns the promise to the caller.
In this section we learn to return the Observable directly and discuss when and why that might be
a good thing to do.
Background
An observable is a stream of events that we can process with array-like operators.
Angular core has basic support for observables. We developers augment that support with
operators and extensions from the RxJS Observables library.
We'll see how shortly.
Recall that our HeroService quickly chained the toPromise operator to the Observable result of http.get.
That operator converted the Observable into a Promise and we passed that promise back to the caller.
Converting to a promise is often a good choice. We typically ask http.get to fetch a single chunk of data.
When we receive the data, we're done.
A single result in the form of a promise is easy for the calling component to consume
and it helps that promises are widely understood by JavaScript programmers.
But requests aren't always "one and done". We may start one request,
then cancel it, and make a different request before the server has responded to the first request.
Such a request-cancel-new-request sequence is difficult to implement with Promises.
It's easy with Observables as we'll see.
Search-by-name
We're going to add a hero search feature to the Tour of Heroes.
As the user types a name into a search box, we'll make repeated HTTP requests for heroes filtered by that name.
We start by creating HeroSearchService that sends search queries to our server's web api.
app/hero-search.service.ts
import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import { Observable } from 'rxjs';
import { Hero } from './hero';
@Injectable()
export class HeroSearchService {
constructor(private http: Http) {}
search(term: string): Observable<Hero[]> {
return this.http
.get(`app/heroes/?name=${term}`)
.map((r: Response) => r.json().data as Hero[]);
}
}
The http.get() call in HeroSearchService is similar to the one
in the HeroService, although the URL now has a query string.
Another notable difference: we no longer call toPromise,
we simply return the observable instead.
HeroSearchComponent
Let's create a new HeroSearchComponent that calls this new HeroSearchService.
The component template is simple — just a text box and a list of matching search results.
As the user types in the search box, a keyup event binding calls the component's search method with the new search box value.
The *ngFor repeats hero objects from the component's heroes property. No surprise there.
But, as we'll soon see, the heroes property is now an Observable of hero arrays, rather than just a hero array.
The *ngFor can't do anything with an Observable until we flow it through the async pipe (AsyncPipe).
The async pipe subscribes to the Observable and produces the array of heroes to *ngFor.
Time to create the HeroSearchComponent class and metadata.
app/hero-search.component.ts
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { Observable } from 'rxjs/Observable';
import { Subject } from 'rxjs/Subject';
import { HeroSearchService } from './hero-search.service';
import { Hero } from './hero';
@Component({
moduleId: module.id,
selector: 'hero-search',
templateUrl: 'hero-search.component.html',
styleUrls: [ 'hero-search.component.css' ],
providers: [HeroSearchService]
})
export class HeroSearchComponent implements OnInit {
heroes: Observable<Hero[]>;
private searchTerms = new Subject<string>();
constructor(
private heroSearchService: HeroSearchService,
private router: Router) {}
// Push a search term into the observable stream.
search(term: string): void {
this.searchTerms.next(term);
}
ngOnInit(): void {
this.heroes = this.searchTerms
.debounceTime(300) // wait for 300ms pause in events
.distinctUntilChanged() // ignore if next search term is same as previous
.switchMap(term => term // switch to new observable each time
// return the http search observable
? this.heroSearchService.search(term)
// or the observable of empty heroes if no search term
: Observable.of<Hero[]>([]))
.catch(error => {
// TODO: real error handling
console.log(error);
return Observable.of<Hero[]>([]);
});
}
gotoDetail(hero: Hero): void {
let link = ['/detail', hero.id];
this.router.navigate(link);
}
}
Search terms
Let's focus on the searchTerms:
private searchTerms = new Subject<string>();
// Push a search term into the observable stream.
search(term: string): void {
this.searchTerms.next(term);
}
A Subject is a producer of an observable event stream;
searchTerms produces an Observable of strings, the filter criteria for the name search.
Each call to search puts a new string into this subject's observable stream by calling next.
Initialize the heroes property (ngOnInit)
A Subject is also an Observable.
We're going to turn the stream
of search terms into a stream of Hero arrays and assign the result to the heroes property.
heroes: Observable<Hero[]>;
ngOnInit(): void {
this.heroes = this.searchTerms
.debounceTime(300) // wait for 300ms pause in events
.distinctUntilChanged() // ignore if next search term is same as previous
.switchMap(term => term // switch to new observable each time
// return the http search observable
? this.heroSearchService.search(term)
// or the observable of empty heroes if no search term
: Observable.of<Hero[]>([]))
.catch(error => {
// TODO: real error handling
console.log(error);
return Observable.of<Hero[]>([]);
});
}
If we passed every user keystroke directly to the HeroSearchService, we'd unleash a storm of HTTP requests.
Bad idea. We don't want to tax our server resources and burn through our cellular network data plan.
Fortunately, we can chain Observable operators to the string Observable that reduce the request flow.
We'll make fewer calls to the HeroSearchService and still get timely results. Here's how:
debounceTime(300) waits until the flow of new string events pauses for 300 milliseconds
before passing along the latest string. We'll never make requests more frequently than 300ms.
distinctUntilChanged ensures that we only send a request if the filter text changed.
There's no point in repeating a request for the same search term.
switchMap calls our search service for each search term that makes it through the debounce and distinctUntilChanged gauntlet.
It cancels and discards previous search observables, returning only the latest search service observable.
The switchMap operator
(formerly known as "flatMapLatest") is very clever.
Every qualifying key event can trigger an http method call.
Even with a 300ms pause between requests, we could have multiple HTTP requests in flight
and they may not return in the order sent.
switchMap preserves the original request order while returning
only the observable from the most recent http method call.
Results from prior calls are canceled and discarded.
We also short-circuit the http method call and return an observable containing an empty array
if the search text is empty.
Note that canceling the HeroSearchService observable won't actually abort a pending HTTP request
until the service supports that feature, a topic for another day.
We are content for now to discard unwanted results.
catch intercepts a failed observable.
Our simple example prints the error to the console; a real life application should do better.
Then we return an observable containing an empty array to clear the search result.
Import RxJS operators
The RxJS operators are not available in Angular's base Observable implementation.
We have to extend Observable by importing them.
We could extend Observable with just the operators we need here by
including the pertinent import statements at the top of this file.
Many authorities say we should do just that.
We take a different approach in this example.
We combine all of the RxJS Observable extensions that our entire app requires into a single RxJS imports file.