我在<gap:plugin name="com.phonegap.plugins.pushplugin" />
config.xml中添加了。当我运行应用程序时,即使手机没有连接到互联网,它也会显示警告“Callback Success!Result = OK”,然后我按OK,没有其他事情发生。
onNotificationGCM事件不会触发,因此它永远不会返回regid。
function showAlert(message, title) {
if (navigator.notification) {
navigator.notification.alert(message, null, title, 'OK');
} else {
alert(title ? (title + ": " + message) : message);
}
}
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
$(document).ready(function () {navigator.splashscreen.hide();});
try {
var pushNotification = window.plugins.pushNotification;
pushNotification.register(successHandler, errorHandler, {"senderID":"659859389520","ecb":"onNotificationGCM"});
} catch (ex) {
showAlert(ex, 'push error');
}
setTimeout(function() {
navigator.splashscreen.hide();
}, 3000);
}
function successHandler(result) {
showAlert('Callback Success! Result = '+result, "Success");
}
function errorHandler(error) {
showAlert(error, "Error");
}
function onNotificationGCM(e) {
switch( e.event )
{
case 'registered':
if ( e.regid.length > 0 )
{
console.log("Regid " + e.regid);
showAlert('registration id = '+e.regid);
}
break;
case 'message':
showAlert('message = '+e.message+' msgcnt = '+e.msgcnt, "Message");
break;
case 'error':
showAlert('GCM error = '+e.msg, "Error");
break;
default:
showAlert('An unknown GCM event has occurred', "Unknown Event");
break;
}
}
在ADB日志GCM工作正常。它完全返回一个regid,但sendJavascript没有调用我的onNotificationGCM函数。因此它不起作用。为什么?我在这里做错了什么?
05-22 01:28:27.407: V/PushPlugin(21372): sendJavascript: javascript:onNotificationGCM({"regid":"APb91bG...Sqg4YP","event":"registered"})
答案 0 :(得分:0)
解决了这个问题。在调用onNotificationGCM之前,我正在从index.html重定向到另一个页面。因此根本没有被召唤。
为了测试我将重定向代码放在onNotificationGCM中,它完美无缺。