これにより、Hello World が正常に表示されるため、app.component.ts が正しくブートストラップされます。DataService からデータが返されないか、表示できません。コンパイル エラーはありません。JavaScript の alert() のような TypeScript のポップアップ ウィンドウで、データが DataService によって返されているかどうかをすばやく確認できますか?
app.component.ts
import { Component } from 'angular2/core';
import { DataService } from './data.service';
@Component({
selector: 'app',
template: `<h1>Hello World</h1>
<li *ngFor="#customer of customers">
<span>{{customer.firstName}}</span>
</li>
`
})
export class AppComponent {
public dataService: DataService;
customers: any[];
constructor() { }
ngOnInit() {
this.dataService.getCustomers()
.subscribe((customers: any[]) => {
this.customers = customers;
});
}
}
data.service.ts
import { Injectable } from 'angular2/core';
import { Http, Response } from 'angular2/http';
import 'rxjs/add/operator/map';
@Injectable()
export class DataService {
public http: Http
constructor() { }
getCustomers() {
return this.http.get('customers.json')
.map((res: Response) => res.json());
}
}