location.json
を持って
内のオブジェクトへオブジェクトにjson文字列を解析しますか?活字体、角度2解析JSONの形式のJSON文字列を含む、HTTP
...
export class DashboardComponent {
locations: Locations[];
constructor(private locationService:LocationService) {
this.getLocations()
}
getLocations(){
this.locationService.get('assets/location.json')
.subscribe(res => this.location = res);
}
を –
これは私のJSONをマップしませんでした。 – Kenadet