Last active
December 10, 2017 22:56
-
-
Save Kamilnaja/ca1ace9ca2edef7e126882249869d90a to your computer and use it in GitHub Desktop.
Observable in angular2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, OnInit } from '@angular/core'; | |
import { Observable } from 'rxjs/Observable'; | |
import { HttpClient } from './observable'; | |
import { IUser } from './userInterface'; | |
@Component({ | |
selector: 'app-root', | |
templateUrl: './app.component.html', | |
styleUrls: ['./app.component.css'] | |
}) | |
export class AppComponent implements OnInit { | |
debugger; | |
public users: IUser[]; | |
constructor( | |
public client: HttpClient | |
) { | |
} | |
public ngOnInit() { | |
this.client.fetchUsers().subscribe((users: IUser[]) => { | |
this.users = users; | |
}); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Observable } from "rxjs/Observable"; | |
import { Injectable } from "@angular/core"; | |
import { Http, Response } from "@angular/http"; | |
import 'rxjs/add/operator/map'; | |
@Injectable() | |
export class HttpClient { | |
constructor( | |
public http: Http | |
) {} | |
public fetchUsers() { | |
return this.http.get("http://localhost:8080/api/").map((res: Response) => res.json()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment