I\'m trying to use the following code after trying several ways online tutorials I can not make it work.
..// import {Http, HTTP_PROVIDERS} from \'angular2/h
Well, as the error message states this.http is not a function, it's an object which has several methods. You need this.http.get() method:
this.http
this.http.get()
this.http.get('resources/users.json') .map(res => res.json()) .subscribe(users => this.users = users);