0
私はしかし、私はProperty 'results' does not exist on type 'AppComponent
プロパティ「結果」タイプに存在しません「AppComponent」
import { Component } from '@angular/core';
//in place where you wanted to use `HttpClient`
import { HttpClient } from '@angular/common/http';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'app';
// Inject HttpClient into your component or service.
constructor(private http: HttpClient) {}
ngOnInit(): void {
// Make the HTTP request:
this.http.get('assets/api/list.json').subscribe(data => {
// Read the result field from the JSON response.
this.results = data['results'];
});
}
}