设备就绪功能未触发警报?

时间:2017-04-30 11:43:10

标签: javascript cordova phonegap-build phonegap

我尝试使用cordova本地通知插件,并且从我看到的内容开始工作,直到设备就绪功能被激活。

我在StackOverflow上看到了很多问题,我尝试在下面实施解决方案,但是当我构建应用程序时(使用PhoneGap构建),设备就绪功能内的警报根本就不是&#39出现。

我会尝试尽可能缩小我的代码。

配置:

<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns   = "http://www.w3.org/ns/widgets"
    xmlns:gap   = "http://phonegap.com/ns/1.0"
    id          = "com.phonegap.example"
    version     = "1.0.1" >

  <name>1.0.1</name>

  <description>
      hgfdngf
  </description>

  <author href="https://build.phonegap.com" email="*****">
      ****
  </author>

    <content src="index.html" />

    <plugin name="org.apache.cordova.device" />
    <plugin name="de.appplant.cordova.plugin.local-notification" />

</widget>

的index.html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
    <title>NRL</title>
    <link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
    <link rel="stylesheet" href="css/main.css"> <!-- Link to main style sheet -->
    <script src="js/jquery-1.12.4.min.js"></script>
    <link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css">
    <script src="js/jquery.mobile-1.4.5.min.js"></script>-->
    <script src="js/javascript.js"></script>
</head>

    <body onload="onLoad()">

</body>

</html>

JS:

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

function onDeviceReady() {
    alert("deviceready");    
}

1 个答案:

答案 0 :(得分:2)

你需要像这样参考cordova.js

 <script type="text/javascript" src="cordova.js"></script>

替换cordova.js路径的路径