在Angular 9中,ng-if指令已被弃用,取而代之的是ngIf指令。ng-show指令也不存在于Angular中。相反,可以使用ngIf指令来实现元素的条件显示。以下是一个解决方法的代码示例:
HTML模板:
这是一个显示的元素
组件代码:
import { Component } from '@angular/core';
@Component({
selector: 'app-my-component',
templateUrl: './my-component.component.html',
styleUrls: ['./my-component.component.css']
})
export class MyComponentComponent {
showElement = true;
toggleElement() {
this.showElement = !this.showElement;
}
}
在上面的示例中,点击按钮时会调用toggleElement()方法,该方法会切换showElement变量的值。通过*ngIf指令,只有当showElement为true时,div元素才会显示出来。