parent
258ec05097
commit
80167be91b
@ -0,0 +1,15 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { Http } from '@angular/http';
|
||||
import 'rxjs/add/operator/map';
|
||||
|
||||
@Injectable()
|
||||
export class SearchService {
|
||||
|
||||
constructor(private http: Http) {}
|
||||
|
||||
createAPIObservable(name){
|
||||
return this.http
|
||||
.get('http://swapi.co/api/people/?search=' + name)
|
||||
.map(response=> response.json().results );
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue