angular 中*ngIf 和*ngSwitch判断语句

Welcome to {{ title }}!

show

hide

这是 ngIF 判断是否显示

  • 已支付
  • 订单已经确认
  • 已发货
  • 无效
import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {
  title = 'angulardemo';
  status='2';
  isShow=false;
}

效果:

angular 中*ngIf 和*ngSwitch判断语句_第1张图片

转载于:https://www.cnblogs.com/loaderman/p/10894423.html

你可能感兴趣的:(angular 中*ngIf 和*ngSwitch判断语句)