我正在使用PhoneGap build + jQuery Mobile(1.4+)和这个插件:http://www.pushwoosh.com/programming-push-notification/ios/ios-additional-platforms/push-notification-sdk-integration-for-phonegap/
它对我来说很好,但是我想要做的是能够在自定义数据中发送jQuery移动URL(例如#test),这些数据是作为'JSON'发送的?然后jQuery Mobile将在应用程序中加载jQuery页面。
有人能告诉我如何实现这个目标吗?在这个阶段,我有:
//push notifications handler
document.addEventListener('push-notification', function(event) {
var notification = event.notification;
// navigator.notification.alert(notification.aps.alert);
//to view full push payload
// navigator.notification.alert(JSON.stringify(notification));
//reset badges on icon
pushNotification.setApplicationIconBadgeNumber(0);
});
http://www.pushwoosh.com/programming-push-notification/pushwoosh-push-notification-remote-api/
他们的例子是{“key”:“value”}所以假设我的是{“url”:“#test”}
谢谢, 本
答案 0 :(得分:0)
我希望这仍然相关(或将来的搜索),你可以从notification.u对象中检索数据
示例:
if( typeof(notification.u.url) != "undefined" ) {
// do whatever here
}