Angular10 NgSwitchCase 指令
在本文中,我们将了解 Angular 10 中的 NgSwitchCase 是什么以及如何使用它。
Angular10中的NgSwitchCase 用于创建一个视图,当给定表达式匹配表达式时,该视图将从父 NgSwitch 中添加或删除
句法:
NgModule:NgSwitchCase使用的模块是:
- 通用模块
选择器:
- [NgSwitchCase]
方法:
- 创建要使用的 Angular 应用程序
- 使用 NgSwitchCase 不需要任何导入
- 在 app.component.ts 中定义一个变量
- 在 app.component.html 中使用 NgSwitch 和 NgSwitchCase 指令在元素中检查条件
- 使用 ng serve 为 Angular 应用程序服务以查看输出
示例 1:
app.component.ts
import { Component }
from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
num = 2;
}
app.component.html
One
Two
Three
Four
Five
app.component.html
One
Two
Three
Four
Five
输出:
参考: https://angular.io/api/common/NgSwitchCase