PushWoosh自定义数据 - 用于加载查询页面



我使用phonegap build jquery mobile(1.4 )使用此插件:http://www.pushwoosh.com/programpommingming-programming-push-notification/ios/ios-ios-additional-platforms/推送notification-sdk-integration-for-phontgap/

这对我来说一切都很好,我想做的是能够在自定义数据中发送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"}

谢谢ben

我希望这仍然相关(或以后的搜索),您可以从Notification.u对象

检索数据

示例:

if( typeof(notification.u.url) != "undefined" ) {
    // do whatever here
    }

相关内容

  • 没有找到相关文章

最新更新