在Angular中,可以使用ngIf指令来根据条件显示或隐藏HTML元素。当使用Observable来异步获取数据时,可以使用async管道来处理Observable,并将其绑定到ngIf指令。
以下是一个示例代码,演示了如何在Angular中使用*ngIf与来自异步调用的Observable数据:
import { Component, OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { DataService } from 'path/to/data.service';
@Component({
selector: 'app-my-component',
template: `
`,
})
export class MyComponent implements OnInit {
data$: Observable;
isLoading: boolean;
constructor(private dataService: DataService) {}
ngOnInit() {
this.isLoading = true;
this.data$ = this.dataService.getData();
this.data$.subscribe(() => {
this.isLoading = false;
});
}
}
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
@Injectable({
providedIn: 'root',
})
export class DataService {
constructor(private http: HttpClient) {}
getData(): Observable {
return this.http.get('path/to/api');
}
}
在上面的代码中,我们在组件的ngOnInit方法中调用了getData方法来获取数据,并将返回的Observable赋值给data$属性。然后,我们使用async管道将data$属性绑定到*ngIf指令中。如果Observable正在加载数据,isLoading变量将为true,*ngIf指令会显示“数据加载中”的提示。一旦Observable完成加载数据,isLoading将为false,*ngIf指令会显示实际的数据。
这样,就可以使用*ngIf指令与来自异步调用的Observable数据进行条件显示和隐藏了。