使用离子分析推送通知

时间:2015-04-21 11:51:59

标签: angularjs cordova ionic-framework parse.js

我正在尝试使用parse设置推送通知来处理收到的通知。

我使用了phonegap-parse-plugin插件,并且能够正确设置它。

我的问题是我无法处理收到的通知。我想根据通知json params将用户重定向到通知页面。

所以,我决定切换到parse-push-plugin,但我的问题是我甚至无法显示警告注册框;它甚至找不到ParsePushPlugin方法。

我遵循了足够简单的教程并将其添加到我的app.js文件

ParsePushPlugin.register(
    { appId:"xxx", clientKey:"xxx", eventKey:"myEventKey" }, //will trigger receivePN[pnObj.myEventKey]
    function() {
        alert('successfully registered device!');
    },
    function(e) {
        alert('error registering device: ' + e);
});

ParsePushPlugin.on('receivePN', function(pn){
    alert('yo i got this push notification:' + JSON.stringify(pn));
});

警报成功未能显示,所以我猜它不起作用或我做的不对。

1 个答案:

答案 0 :(得分:1)

使用phonegap-plugin-push。它易于实现和使用。

配置:

    var push = PushNotification.init({
        "android": {
            "senderID": "Your-sender-ID",
            "forceShow": true, // To show notifications on screen as well
            "iconColor": "#403782",
            "badge": "true",
            "clearBadge": "true" // To clear app badge
        },
        "ios": {
            "alert": "true",
            "badge": "true",
            "clearBadge": "true",
            "sound": "true",
            "forceShow": "true"
        },
        "windows": {}
    });

设备注册:

    push.on('registration', function(data) {
            localStorage.setItem('pushToken', data.registrationId); // Save registration ID
    });

处理通知

    push.on('notification', function(data) {
        console.log(data);
        // Handle all requests here
        if (data.additionalData.$state == "mystate") {
            $state.go('app.conversations');
        }
    })