Как получить значение массива JSON в результате получения запроса?
@Component({
selector: 'app-navbar',
templateUrl: './navbar.component.html',
styleUrls: ['./navbar.component.css']
})
export class NavbarComponent implements OnInit {
countries = ["Ukraine", "RSA"];
data: Array<Country> = new Array();
constructor(private http: HttpClient) { }
ngOnInit(): void {
this.http.get<Array<Country>>('http://localhost:8080/countries/db')
.subscribe(data => {
this.data = data;
});
console.log(this.data);
}
}
JSON
[
{
"country": "Vatican-City"
},
{
"country": "Zambia"
},
{
"country": "Zimbabwe"
}
]
Я хочу сохранить значение JSON как строковый массив в переменной данных с Angular