Popup.alert无法使用" ionic-framework:2.0.0-alpha.42"。
我正在使用"离子框架:2.0.0-alpha.42"本地和" ionic@2.0.0-beta.15" NPM在全球范围内。
以document 为例。
this.popup.alert({
title: "New Friend!",
template: "Your friend, Obi wan Kenobi, just accepted your friend request!",
cssClass: 'my-alert'
}).then(() => {
console.log('Alert closed');
});
该代码无效。我没有看到弹出窗口,我看不到"警报已关闭"曾在控制台中显示过。我拉进了#34; popup"通过构造函数。
private popup: Popup;
constructor(popup: Popup) {
this.popup = popup;
}
答案 0 :(得分:1)
我想出了这个问题。你需要添加
<ion-overlay></ion-overlay>
到你的app.html。我在文档中看到没有。