离子 3 侧边栏添加徽章通知不起作用



我正在使用**Ionic 3 - 徽章**作为我的应用程序侧边栏。 当我添加徽章时,我遇到了一些冲突,但它没有显示任何人都知道如何在侧边栏中显示徽章谢谢

我的代码部分

应用.html

   <ion-list class="user-list" >
      <button ion-item menuClose class="text-1x" *ngFor="let menuItem of appMenuItems" (click)="openPage(menuItem)" >
        <ion-icon item-left [name]="menuItem.icon" style="color: black; " ></ion-icon>
        <span ion-text style="color: black; border-bottom: none;">{{menuItem.title}}</span>
        <ion-badge">{{p.badgeCount}}</ion-badge>
      </button>
    </ion-list>

app.component.ts

export interface MenuItem {
  title: string;
  component: any;
  icon: string;
  buttonName:string;

}

@Component({
  templateUrl: 'app.html'
})
export class MyApp {
  @ViewChild(Nav) nav: Nav;
  rootPage: any = SigninPage;
  selectedTheme: String;
  appMenuItems: Array<MenuItem>;

  constructor(public platform: Platform, private settings: SettingsProvider, private master: master) {
    this.settings.getActiveTheme().subscribe(val => this.selectedTheme = val);
    this.appMenuItems = [
      {title: 'Home', component: HomePage, icon: 'ios-home-outline'},
      {title: 'Notification', component: CheckoutPage, icon: 'ios-basket-outline',buttonName: 'badgeNumber ',},
    ];

  }

我不喜欢我的问题

我改变这个<ion-badge>{{menuItem.badgeCount}}</ion-badge>

app.component.ts

export interface MenuItem {
  title: string;
  component: any;
  icon: string;
  buttonName:string;

}

@Component({
  templateUrl: 'app.html'
})
export class MyApp {
  @ViewChild(Nav) nav: Nav;
  rootPage: any = SigninPage;
  selectedTheme: String;
  appMenuItems: Array<MenuItem>;

  constructor(public platform: Platform, private settings: SettingsProvider, private master: master) {
    this.settings.getActiveTheme().subscribe(val => this.selectedTheme = val);
    this.appMenuItems = [
      {title: 'Home', component: HomePage, icon: 'ios-home-outline'},
      {title: 'Notification', component: CheckoutPage, icon: 'ios-basket-outline',badgeCount: '5 ',},
    ];

  }

应用.html

 <ion-list class="user-list" >
      <button ion-item menuClose class="text-1x" *ngFor="let menuItem of appMenuItems" (click)="openPage(menuItem)" >
        <ion-icon item-left [name]="menuItem.icon" style="color: black; " ></ion-icon>
        <span ion-text style="color: black; border-bottom: none;">{{menuItem.title}}</span>
        <ion-badge>{{menuItem.badgeCount}}</ion-badge>
      </button>
    </ion-list>

相关内容

  • 没有找到相关文章

最新更新