import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { enableProdMode } from '@angular/core';
enableProdMode();
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
values: any = {};
constructor(private http: HttpClient) { }
ngOnInit() {
this.getValues();
console.log(this.values);
}
getValues()
{
this.http.get('http://localhost:5000/api/values').subscribe(Response => { this.values = Response},error => {console.log(error);
});
}
}
Я могу получить значения из ответа HTTP. Но я не могу сохранить эти значения в объекте 'values'. получить пустой массив.