gpt4 book ai didi

javascript - Phonegap 构建应用程序中未定义的 Phonegap 函数 - pushNotifications 也不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 12:08:32 25 4
gpt4 key购买 nike

我无法让 phonegap 正常工作。 phonegap 函数/对象似乎不起作用。即使我使用正确的 CLI 命令包含了插件,并且根据文档确保所有文件都位于正确的位置,推送通知也不起作用。我使用了 PushNotifications 插件文档中的 javascript 代码,所以我认为它也是正确的。

我已经在 Mac OS X 10.8.4 上安装了 PhoneGap,并使用 CLI 界面创建了一个新的 PhoneGap 项目。

然后我为应用程序编写了 HTML/CSS/JavaScript 文件并将它们放在 www 目录中。我使用以下命令在我的 Android 设备上构建和运行应用程序:

phonegap local run android

它运行良好,应用程序在我的设备上启动。一切正常。然后我添加了一些使用 phonegap 的函数/对象的代码,并尝试再次在 android 上运行它。应用程序再次正常运行,但这次没有执行以下代码:

alert(device.platform);

此外,由于错误(设备未定义),PushNotifications 代码也没有执行我曾尝试同时包含 cordova.js、phonegap.js,甚至都不包含它们,但结果仍然相同。

我检查了项目目录中的 platforms/android/assets/www 文件夹是否包含正确的文件,确实如此。 cordova.js 和 phonegap.js 文件都是自动添加的(phonegap build 命令添加这两个文件是为了向后兼容,至少我是这么理解的)。

所以我想弄清楚为什么即使 phonegap.js 文件存在于 www 文件夹中并包含在 html 文件中,设备对象也未定义。我想如果我能得到“警报(设备.平台);”代码工作然后推送通知代码也将工作,因为它在必须评估 device.platform 的 if 语句中失败。

这是索引页面的代码:

<!DOCTYPE html>
<html>
<head>
<title>My App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/index.css"/>

<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8" src="js/jquery-2.0.0.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/functions.js"></script>
<script src="js/fastclick.js"></script>
<script type="text/javascript" src="PushNotification.js"></script>
<script type="text/javascript" src="http://debug.build.phonegap.com/target/target-script-min.js#f997ffa0-5ed6-11e2-84ec-12313d1744da"></script>

<script type="text/javascript" charset="utf-8">
//*********************************************************
// Wait for Cordova to Load
//*********************************************************

document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
//THE FOLLOWING CODE IS RESPONSIBLE FOR PUSH NOTIFICATIONS
var pushNotification;

alert(device.platform);

try {
pushNotification = window.plugins.pushNotification;
if (device.platform == 'android' || device.platform == 'Android') {
$("#app-status-ul").append('<li>registering android</li>');
pushNotification.register(successHandler, errorHandler, {"senderID":"hidden-by-me","ecb":"onNotificationGCM"}); // required!
} else {
$("#app-status-ul").append('<li>registering iOS</li>');
pushNotification.register(tokenHandler, errorHandler, {"badge":"true","sound":"true","alert":"true","ecb":"onNotificationAPN"}); // required!
}
}
catch(err) {
txt="There was an error on this page.\n\n";
txt+="Error description: " + err.message + "\n\n";
alert(txt);
}

//Rest of the code

updateData();
if (window.localStorage.getItem("default-school") == "infant") {
window.location.replace("infant.html");
} else
if (window.localStorage.getItem("default-school") == "junior") {
window.location.replace("junior.html");
};
}

// iOS
function onNotificationAPN(event) {
if (event.alert) {
navigator.notification.alert(event.alert);
}

if (event.sound) {
var snd = new Media(event.sound);
snd.play();
}

if (event.badge) {
pushNotification.setApplicationIconBadgeNumber(successHandler, errorHandler, event.badge);
}
}

// Android
function onNotificationGCM(e) {
$("#app-status-ul").append('<li>EVENT -> RECEIVED:' + e.event + '</li>');

switch( e.event ) {
case 'registered':
if ( e.regid.length > 0 ) {
$("#app-status-ul").append('<li>REGISTERED -> REGID:' + e.regid + "</li>");
// Your GCM push server needs to know the regID before it can push to this device
// here is where you might want to send it the regID for later use.
console.log("regID = " + e.regID);
}
break;

case 'message':
// if this flag is set, this notification happened while we were in the foreground.
// you might want to play a sound to get the user's attention, throw up a dialog, etc.
if (e.foreground) {
$("#app-status-ul").append('<li>--INLINE NOTIFICATION--' + '</li>');

// if the notification contains a soundname, play it.
var my_media = new Media("/android_asset/www/"+e.soundname);
my_media.play();
}
else {
// otherwise we were launched because the user touched a notification in the notification tray.
if (e.coldstart) $("#app-status-ul").append('<li>--COLDSTART NOTIFICATION--' + '</li>');
else $("#app-status-ul").append('<li>--BACKGROUND NOTIFICATION--' + '</li>');
}

$("#app-status-ul").append('<li>MESSAGE -> MSG: ' + e.payload.message + '</li>');
$("#app-status-ul").append('<li>MESSAGE -> MSGCNT: ' + e.payload.msgcnt + '</li>');
break;

case 'error':
$("#app-status-ul").append('<li>ERROR -> MSG:' + e.msg + '</li>');
break;

default:
$("#app-status-ul").append('<li>EVENT -> Unknown, an event was received and we do not know what it is</li>');
break;
}
}

function tokenHandler (result) {
$("#app-status-ul").append('<li>token: '+ result +'</li>');
// Your iOS push server needs to know the token before it can push to this device
// here is where you might want to send it the token for later use.
}

function successHandler (result) {
$("#app-status-ul").append('<li>success:'+ result +'</li>');
}

function errorHandler (error) {
$("#app-status-ul").append('<li>error:'+ error +'</li>');
}
</script>
</head>
<body onload="initFastButtons();init();">
<span id="fastclick">

<div id="main">
<ul id="app-status-ul">
<li>Push Plugin test</li>
</ul>
</div>
</span>
</body>
</html>

如果有人能帮助我解决这个问题,那就太好了。

最佳答案

您使用的是哪个版本的 phonegap?

如果是 v3 那么你是否安装了“设备”插件?

$ phonegap local plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git

关于javascript - Phonegap 构建应用程序中未定义的 Phonegap 函数 - pushNotifications 也不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19117308/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com