要解决Angular 7服务器响应不显示在列表中的问题,可以按照以下步骤进行操作:
responseList
的数组变量。responseList: any[] = [];
HttpClient
添加到组件的构造函数中。import { HttpClient } from '@angular/common/http';
constructor(private http: HttpClient) { }
responseList
变量中。例如,可以创建一个名为getResponse
的方法。getResponse() {
this.http.get('your-api-url').subscribe((data: any) => {
this.responseList = data;
});
}
responseList
变量并显示每个服务器响应的数据。
-
{{ response }}
getResponse
方法来发送HTTP请求并获取服务器响应。ngOnInit() {
this.getResponse();
}
通过遵循上述步骤,服务器响应应该能够正确显示在列表中。确保将your-api-url
替换为实际的API地址。