我在<gap:plugin name="com.phonegap.plugins.pushplugin" />
config.xml中添加了。当我运行应用程序时,它显示警报"Callback Success!"结果= OK"即使手机没有连接到互联网,然后我按OK,没有其他任何事情发生。
onnotificationongcm事件不会触发,因此它永远不会返回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工作得非常好。它完美地返回了一个字段,但sendJavascript没有调用我的onnotificationongcm函数。因此它不起作用。为什么?我哪里做错了?
05-22 01:28:27.407: V/PushPlugin(21372): sendJavascript: javascript:onNotificationGCM({"regid":"APb91bG...Sqg4YP","event":"registered"})
已解决。在onnotificationongcm被调用之前,我正在从index.html重定向到另一个页面。因此,它根本没有被调用。
为了测试,我将重定向代码放在onnotificationongcm中,它工作得很好。