问题描述: 在使用Angular的ngIf指令时,有时候会出现渲染不生效的情况,即条件为真时元素没有被渲染出来。
解决方法:
console.log(condition);
import { Component, ChangeDetectorRef } from '@angular/core';
constructor(private cdr: ChangeDetectorRef) { }
ngOnInit() {
// 异步操作改变变量
this.asyncOperation().subscribe(() => {
this.condition = true;
// 手动触发变化检测
this.cdr.detectChanges();
});
}
import { Component, ChangeDetectionStrategy } from '@angular/core';
@Component({
selector: 'app-child',
templateUrl: './child.component.html',
changeDetection: ChangeDetectionStrategy.Default
})
export class ChildComponent { }
以上是一些常见的解决ngIf渲染不生效的方法,根据具体情况选择适合的解决方案。