AlertController-带有按钮中文本的离子图标

时间:2018-06-29 11:39:50

标签: angular ionic2

是否可以在AlertController中用文本显示按钮中的离子图标?我尝试了下面的代码,但是没有运气。

let alert = this.alertCtrl.create({
      title: 'Confirmation',
      message: 'This page is going to refresh?',
      cssClass: 'customCss',
      enableBackdropDismiss: false,
      buttons: [
        {
          text: `<ion-icon name="refresh"></ion-icon> Refresh`,
          cssClass: 'refresh-button',
          handler: (data: any) => {         
          }
        },
        {
          text: 'Cancel',
          cssClass: 'cancel-button',
          handler: (data: any) => {          

          }
        }

      ]
    });
    alert.present();

它将在按钮中将html显示为文本。还有什么其他方法可以不用使用Modal来实现。

谢谢

0 个答案:

没有答案