在*ngFor完成渲染时显示加载,可以通过以下步骤实现:
<div *ngIf="isLoading">
正在加载...
</div>
以下是一个示例代码:
import { Component } from '@angular/core';
@Component({
selector: 'app-example',
template: `
<div *ngIf="isLoading">
正在加载...
</div>
<ul>
<li *ngFor="let item of items">
{{ item }}
</li>
</ul>
`
})
export class ExampleComponent {
isLoading: boolean = true;
items: string[] = [];
ngOnInit() {
// 模拟异步操作,例如从服务器获取数据
setTimeout(() => {
this.items = ['Item 1', 'Item 2', 'Item 3'];
this.isLoading = false;
}, 2000);
}
}
在上述示例中,isLoading变量初始值为true,因此加载状态会显示出来。在ngOnInit生命周期钩子函数中,通过setTimeout模拟异步操作,2秒后更新数据源items,并将isLoading变量设置为false,加载状态会隐藏。
推荐的腾讯云相关产品:腾讯云云服务器(CVM)和腾讯云对象存储(COS)。
请注意,以上推荐的腾讯云产品仅供参考,具体选择应根据实际需求进行评估和决策。
领取专属 10元无门槛券
手把手带您无忧上云