Я использую Angular 5, и я создал сервис, используя angular-cli
Я хочу создать службу, которая читает локальный файл json для Angular 5.
Это то, что у меня есть... Я немного застрял...
import { Injectable } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
@Injectable()
export class AppSettingsService {
constructor(private http: HttpClientModule) {
var obj;
this.getJSON().subscribe(data => obj=data, error => console.log(error));
}
public getJSON(): Observable<any> {
return this.http.get("./assets/mydata.json")
.map((res:any) => res.json())
.catch((error:any) => console.log(error));
}
}
Как я могу закончить это?