复选框警报控制器 - 显示图像
Checkbox Alert Controller - Show image
我用 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();
}
是否可以添加这样的图片??
如果有人知道解决方法,请帮助我。
谢谢。
我用 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();
}
是否可以添加这样的图片??
如果有人知道解决方法,请帮助我。
谢谢。