如何在浏览器控制台上显示从服务器获取的值?

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

以上是关于如何在浏览器控制台上显示从服务器获取的值?的主要内容,如果未能解决你的问题,请参考以下文章

需要 JWT expiresIn 字段显示在控制台上

如何将打印在控制台上的值存储为矢量?

如何获取网页中的css

如何在控制台上的同一位置写入输出?

如何去掉控制台上输出的这些日志

如何从URL获取片段标识符(hash#之后的值)?