Angular 5を使用していますが、angular-cliを使用してサービスを作成しました
私がやりたいのは、Angular 5のローカルjsonファイルを読み取るサービスを作成することです。
これは私が持っているものです...私は少し行き詰まっています...
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));
}
}
どうすればこれを完成できますか?
HttpClientModule
、コンストラクターに注入しないでください。