Last active
October 8, 2017 18:09
-
-
Save NMZivkovic/2ed96353c3f4970c589663732cfaaa58 to your computer and use it in GitHub Desktop.
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
@Injectable() | |
export class UserService { | |
constructor(private http: Http) { | |
} | |
getUsers(searchCriteria:any) : Observable<User[]>{ | |
let params: URLSearchParams = new URLSearchParams(); | |
params.set('name', searchCriteria); | |
return this.http.get("http://localhost:3000/getUsers", { search: params }) | |
.map((res:any) => { | |
return res.json(); | |
}) | |
.catch((error:any) => { | |
return Observable.throw(error.json ? error.json().error : error || 'Server error') | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment