Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Last active December 10, 2017 22:56
Show Gist options
  • Save Kamilnaja/ca1ace9ca2edef7e126882249869d90a to your computer and use it in GitHub Desktop.
Save Kamilnaja/ca1ace9ca2edef7e126882249869d90a to your computer and use it in GitHub Desktop.
Observable in angular2
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;
});
}
}
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