如何在浏览器控制台上显示从服务器获取的值?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在浏览器控制台上显示从服务器获取的值?相关的知识,希望对你有一定的参考价值。
我尝试使用angular中的httpclient get方法从服务器检索值。但我无法在控制台或网页上查看它。我怎么做?
打字稿文件:
export class CountryComponent implements OnInit {
constructor(private http:HttpClient) { }
country:Observable<Country[]>;
ngOnInit() {
this.country=this.http.get<Country[]>(path+"/getAllCountries");
console.log(this.country);
}
}
html:
<ul>
<li *ngFor="let count of country">
{{(count.id}}
</li>
</ul>
答案
你应该使用async
管道或subscribe
来http请求。
第一种方式async
。让Angular处理订阅本身
<li *ngFor="let count of country | async">
{{(count.id}}
</li>
第二种方式subscribe
:
export class CountryComponent implements OnInit {
constructor(private http:HttpClient) { }
country:Observable<Country[]> = [];
ngOnInit() {
this.http.get<Country[]>(path+"/getAllCountries").subscribe(response => {
this.country = response;
console.log(this.country);
})
}
你可以看看官方教程Http
部分:
https://angular.io/tutorial/toh-pt6
以上是关于如何在浏览器控制台上显示从服务器获取的值?的主要内容,如果未能解决你的问题,请参考以下文章