2

このサンプルに従って、Android エミュレーターで動作する Android pushNotifications (GCM を使用) を取得しました。$cordovaPush.register(config)応答としてOKを取得した後。しかし、コールバック [ $scope.$on('$cordovaPush:notificationReceived'] は実行されません。その結果、登録 ID を取得できません。

Google API プロジェクトを作成しました。そして、呼び出し時に config.senderID でそのプロジェクト ID を使用してい$cordovaPush.register(config)ます。

また、Gmail アカウントをエミュレーターに登録しました。

私は2つの質問があると思います。

1.Android エミュレーターでプッシュ通知を取得 (および登録) することはできますか?

  1. コールバックを呼び出す $cordovaPush:notificationReceived イベントを取得できないのはなぜですか?

    app.controller('AppCtrl', function($scope, $cordovaPush, $cordovaDialogs, $cordovaMedia, $cordovaToast, ionPlatform, $http) { $scope.notifications = [];

    // call to register automatically upon device ready
    ionPlatform.ready.then(function (device) {
        $scope.register();
    });
    
    
    // Register
    $scope.register = function () {
        var config = null;
    
        if (ionic.Platform.isAndroid()) {
            config = {
                "senderID": "12834957xxxx" 
            };
        }
    
        $cordovaPush.register(config).then(function (result) {
            console.log("Register success " + result);
    
            $cordovaToast.showShortCenter('Registered for push notifications');
            $scope.registerDisabled=true;
    
        }, function (err) {
            console.log("Register error " + err)
        });
    }
    
    
    $scope.$on('$cordovaPush:notificationReceived', function (event, notification) {
        console.log(JSON.stringify([notification]));
        if (ionic.Platform.isAndroid()) {
            handleAndroid(notification);
        }
    
    });
    
    // Android Notification Received Handler
    function handleAndroid(notification) {
        // ** NOTE: ** You could add code for when app is in foreground or not, or coming from coldstart here too
        //             via the console fields as shown.
        console.log("In foreground " + notification.foreground  + " Coldstart " + notification.coldstart);
        if (notification.event == "registered") {
            $scope.regId = notification.regid;
            storeDeviceToken("android");
        }
        else if (notification.event == "message") {
            $cordovaDialogs.alert(notification.message, "Push Notification Received");
            $scope.$apply(function () {
                $scope.notifications.push(JSON.stringify(notification.message));
            })
        }
        else if (notification.event == "error")
            $cordovaDialogs.alert(notification.msg, "Push notification error event");
        else $cordovaDialogs.alert(notification.event, "Push notification handler - Unprocessed Event");
    }
    
4

4 に答える 4

4

修正は見た目よりずっと簡単です。私はから変更しました:

$scope.$on('$cordovaPush:notificationReceived', function (event, notification) {

に:

$scope.$on('pushNotificationReceived', function (event, notification) {

デバッグ中に ng-cordova.js でこれに気付きました:

angular.module('ngCordova.plugins.push', [])
    .factory('$cordovaPush', ['$q', '$window', '$rootScope', function ($q, $window, $rootScope) {
        return {
            onNotification: function (notification) {
                $rootScope.$apply(function () {
                    $rootScope.$broadcast('pushNotificationReceived', notification);
                });
            },

これは、「pushNotificationReceived」のブロードキャストを行っていることを意味します。文書化されている「notificationReceived」ではありません。

于 2015-02-24T00:28:33.763 に答える
2

私も同じ問題を抱えてる。ngCordova github で報告されていますが、まだ返信がありません。

私はそれを修正することができました。angularを使用している場合、これは良い解決策ではないことはわかっていますが、レジスタIDを取得できる唯一の方法です。

  1. config オブジェクト内で、次を指定する必要があります'ecb'

    var androidConfig = {
        "senderID": "388573974286",
        "ecb": "function_to_be_called"
    };
    
  2. 関数をコントローラーの外側に置きます。



        window.function_to_be_called = function (notification) {
        switch(notification.event) {

            case 'registered':
                if (notification.regid.length > 0 ) {
                    alert('registration ID = ' + notification.regid);
                }
                break;

            case 'message':
                // this is the actual push notification. its format depends on the data model from the push server
                alert('message = ' + notification.message + ' msgCount = ' + notification.msgcnt);
                break;

            case 'error':
                alert('GCM error = ' + notification.msg);
                break;

            default:
                alert('An unknown GCM event has occurred');
                break;
        }
    };

于 2015-02-23T18:50:44.007 に答える
0

ng-cordova-master\dist\ng-cordova.js のhttp://ngcordova.com/docs/install/から lib/ng-cordova.js の ng-cordova.js を更新してください。

于 2015-03-27T07:01:44.067 に答える
0

あなたが言ったようにイベント名を更新しても、別の問題もありますprocessmessage failed: message: jjavascript:angular.element(document.queryselector('[ng-app]')).injector().get('$cordovapush').onnotification({"event":"registered"

angularが「ng-app」を見つけられず、「未定義」を返す場合に発生しますangular.element(document.querySelector('[ng-app]'))

これを解決するには、次ecbのように ' ' を手動で設定します。

angular.element(document.body).injector().get('$cordovaPush').onNotification

このionic フォーラム エントリのおかげで

于 2015-02-24T19:17:02.017 に答える