How to parse this json structure in listview angular2 nativescript
问题 json structure : { "Employee": [ {"id":1,"name":"Dan" }, {"id":2,"name":"Stack" }, ..... ] } app.component.ts: ngOnInit() { console.log("first", "Test"); this.globalReader.getObjectData() .subscribe(data => this.getData = JSON.stringify(data), ---> Response printed successfully here.I'm able to print it in label. error => alert(error), () => console.log("finished") ); } Edit: component: <label text ="{{getData }}" ></label> getObjectData() { return this._http.get('/page/emp.json') .map(