1

我正在使用带有此插件的 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"}

谢谢,本

4

1 回答 1

0

我希望这仍然相关(或用于将来的搜索),您可以从 notification.u 对象中检索数据

例子:

if( typeof(notification.u.url) != "undefined" ) {

    // do whatever here

    }
于 2014-07-25T12:55:21.413 回答