离子2警报警告

时间:2016-06-21 15:01:58

标签: ionic-framework angular ionic2

当我打开警报时,我收到以下警告 - ngSwitchWhen弃用并将被删除。请改用* ngSwitchCase

问题在于,由于此警告,似乎没有事件侦听器正在工作,我也无法以编程方式解除警报。如果有人可以提供帮助那真的很棒!请在下面找到我的代码:

openAlert() {
let prompt = Alert.create({
    title: 'Test',
    message: "Test",
    inputs: [{
        name: 'name',
        placeholder: 'Name'
    }, ],
    enableBackdropDismiss: true,
    buttons: [{
        text: 'Cancel',
        handler: data => {
            console.log('cancelled');
        }
    }, {
        text: 'Continue',
        handler: data => {
            console.log('continue');
        }
    }]
});
this._navController.present(prompt);
}

以下是一些其他信息

Your system information: 6.2.0
Ionic Framework Version: 2.0.0-beta.9
Ionic CLI Version: 2.0.0-beta.30
Ionic App Lib Version: 2.0.0-beta.16
Node Version: v4.4.5

0 个答案:

没有答案