【发布时间】:2017-01-06 08:35:37
【问题描述】:
我使用 IONIC-2 Beta 版制作了一个应用程序。我正在使用 Checkbox Alert Controller,并想添加图像,
我的代码是
showCheckbox() {
let alert = this.alertCtrl.create();
alert.setTitle('Which planets have you visited?');
alert.addInput({
type: 'checkbox',
label: 'Alderaan',
value: 'value1',
checked: true
});
alert.addInput({
type: 'checkbox',
label: 'Bespin',
value: 'value2'
});
alert.addButton('Cancel');
alert.addButton({
text: 'Okay',
handler: data => {
console.log('Checkbox data:', data);
this.testCheckboxOpen = false;
this.testCheckboxResult = data;
}
});
alert.present();
}
是否可以添加这样的图像?
如果有人知道解决方案,请帮助我。
谢谢。
【问题讨论】:
-
@TedNyberg :我尝试了上面的代码并遵循这个documentation。
标签: angular typescript ionic2 ionic3