在警报控制器中添加ionic2评级

时间:2018-04-11 09:30:12

标签: angular ionic-framework ionic2 ionic3

我有一个警报控制器,我想在其中添加ionic2评级组件。

这是我的代码我已经尝试过了:

  addRating(){
    let body='<rating starIconName="md-star" emptyStarIconName="md-star-outline" halfStarIconName="md-star-half"></rating>';
    let alert = this.alertCtrl.create({
      title: '',
      subTitle: body,
      buttons: [
        {
          text: 'Ok',
          handler: () => {

                 //do something

      });
    });
          }
        },
        {
          text: 'Cancel',
          role: 'cancel',
          handler: data => {
            console.log('Cancel clicked');
          }
        }

      ]
    });
    alert.present();
  }

但是,警报控制器不显示评级选项。它只显示空白。我做错了什么。

0 个答案:

没有答案