我正在使用带有此插件的 PhoneGap build + jQuery Mobile (1.4+):http ://www.pushwoosh.com/programming-push-notification/ios/ios-additional-platforms/push-notification-sdk-integration-for-电话间隙/
它对我来说一切正常,但我想要做的是能够在以“JSON”形式发送的自定义数据中发送一个 jQuery 移动 URL(例如#test)?然后 jQuery Mobile 将在应用程序中加载 jQuery Page。
有人可以告诉我如何实现这一点吗?在这个阶段,我有:
//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"}
谢谢,本