这个问题可能是由于Angular的异步加载数据导致的。以下是一种可能的解决方法:
ngOnInit
生命周期钩子中调用。import { Component, OnInit } from '@angular/core';
import { DataService } from 'your-data-service';
@Component({
selector: 'app-your-component',
templateUrl: './your-component.component.html',
styleUrls: ['./your-component.component.css']
})
export class YourComponent implements OnInit {
list: any[];
constructor(private dataService: DataService) { }
ngOnInit(): void {
this.getData();
}
getData(): void {
this.dataService.getList().subscribe((data) => {
this.list = data;
});
}
}
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class DataService {
private apiUrl = 'your-api-url';
constructor(private http: HttpClient) { }
getList(): Observable {
return this.http.get(this.apiUrl);
}
}
- {{ item.name }}
如果你已经按照上述步骤进行了操作,但仍然无法在页面上看到列表,请检查浏览器的开发者工具中的网络请求,确保数据能够成功加载并返回。如果存在错误,请检查后端 API 的配置和响应。