Cordorva-dialog-plugin适用于phonegap,但不适用于Play商店上的应用发行版

时间:2018-08-24 13:21:39

标签: javascript hybrid-mobile-app phonegap

我正在使用Cordorva对话框插件。请您能解释一下这段代码有什么问题吗:在手机间隙,苹果iphone和android上预览但在Google Play商店上发布时,它可以正常工作。我不确定我使用的是deviceready事件监听器。

  function alrt(){
    document.addEventListener("deviceready", onDeviceReady, false);
    function onDeviceReady(){

    navigator.notification.alert(
        'Sorry, your record was not found',   //  message
         adismissed,                          // callback
        'Password Reset',                     // title
        'Ok'                                  // buttonName
    );

 }
}


    //  xxxxxxxxxxxxxxxxxxxxxxxxxxx
    //  xxxxxxxxxxxxxxxxxxxxxxxxxxx

    function adismissed() {
        console.log();
    }

0 个答案:

没有答案