要在Angular中使用*ngIf来显示一个没有内容的div,可以按照以下步骤进行:
condition: boolean = true;
ngOnInit() {
this.condition = false;
}
完整的示例代码如下:
component.html:
component.ts:
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-component',
templateUrl: './component.html',
styleUrls: ['./component.css']
})
export class Component implements OnInit {
condition: boolean = true;
ngOnInit() {
this.condition = false;
}
}
通过在组件的生命周期钩子函数中更新条件变量的值,可以根据需要控制div的显示和隐藏。