0

背景:我使用 sencha 2.1 开发了一个 SenchaTouch 应用程序。现在我正在尝试使用cordova 2.2.0 js 显示一个简单的警报消息。

我的基本疑问是“我可以在 google chrome 上使用 'navigator.notification.alert' 显示警报框,还是必须在模拟器上运行它才能看到警报框?”

我已按照以下步骤操作。

  • 在我的工作区中包含了cordova 2.2.0 js,并从 index.html 中引用了它。我可以在 Google Chrome 的网络选项卡中看到加载的文件。

  • 下面是我的代码,它只是在单击按钮时显示本机警报框。

    alertDismissed : function() {
        console.log('This function is called');
    }
    
    onLoginNoteCommand: function () {
    
        console.log('onLoginNoteCommand');
    
        navigator.notification.alert(
            'Please Select a Car',  // message
             this.alertDismissed,         // callback
             ' '            // title
         );
    }
    

错误发生

我收到“ Uncaught TypeError: Cannot call method 'alert' of undefined”错误。

任何想法我在哪里做错了?

谢谢

4

1 回答 1

0

当我将我的代码与 PhoneGap 集成并在设备上运行时,我能够看到本机警报框。因此,我对上述解决方案的发现是,在将导航器对象与 PhoneGap 集成后,您只能在设备上使用导航器对象,而不能在浏览器上使用。

谢谢

于 2013-01-04T19:43:39.313 回答