@Daikinzan wrote:
created a simple component to get data
example code:
import {Http} from 'angular2/http';export class Data {
static get parameters() { return [[Http]]; } constructor(http) { **// http is undefined from here** this.http = http; this.jsonData = this.http.get('http://jsonplaceholder.typicode.com/posts').map(res => res.json()); console.log(this.jsonData) }
}
Posts: 3
Participants: 3