3

phonegap を正しく機能させるのに問題があります。phonegap 関数/オブジェクトが機能していないようです。また、適切な CLI コマンドを使用してプラグインを含め、ドキュメントに従ってすべてのファイルが正しい場所にあることを確認したにもかかわらず、プッシュ通知も機能しません。PushNotifications プラグインのドキュメントの JavaScript コードを使用しているので、それも正しいと思います。

Mac OS X 10.8.4 に PhoneGap をインストールし、CLI インターフェイスを使用して新しい PhoneGap プロジェクトを作成しました。

次に、アプリの HTML/CSS/JavaScript ファイルを作成し、www ディレクトリに配置しました。次のコマンドを使用して、Android デバイスでアプリケーションをビルドして実行しました。

phonegap local run android

正常に動作し、アプリケーションがデバイスで起動しました。すべてがうまくいきました。次に、phonegap の関数/オブジェクトを使用するコードを追加し、Android で再度実行しようとしました。アプリは再び正常に実行されましたが、今回は次のコードは実行されませんでした。

alert(device.platform);

また、エラー (デバイスが定義されていません) のため、PushNotifications コードも実行されませんでした。 .

プロジェクト ディレクトリの platform/android/assets/www フォルダーに正しいファイルが含まれているかどうかを確認したところ、含まれていました。cordova.js と phonegap.js ファイルの両方が自動的に追加されました (phonegap build コマンドは、下位互換性の理由から両方のファイルを追加します。少なくとも私はそれを理解していました)。

そのため、phonegap.jsファイルがwwwフォルダーに存在し、htmlファイルに含まれている場合でも、デバイスオブジェクトが定義されていない理由を理解しようとしています。「アラート(device.platform);」を取得できればと思います。コードが機能している場合、device.platform を評価する必要がある if ステートメントで失敗するため、プッシュ通知コードも機能します。

インデックス ページのコードは次のとおりです。

<!DOCTYPE html>
<html>
    <head>
        <title>My App</title>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="stylesheet" type="text/css" href="css/index.css"/>

        <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
        <script type="text/javascript" charset="utf-8" src="js/jquery-2.0.0.min.js"></script>
        <script type="text/javascript" charset="utf-8" src="js/functions.js"></script>
        <script src="js/fastclick.js"></script>
        <script type="text/javascript" src="PushNotification.js"></script>
        <script type="text/javascript" src="http://debug.build.phonegap.com/target/target-script-min.js#f997ffa0-5ed6-11e2-84ec-12313d1744da"></script>

    <script type="text/javascript" charset="utf-8">
        //*********************************************************
        // Wait for Cordova to Load
        //*********************************************************

        document.addEventListener("deviceready", onDeviceReady, false);
        function onDeviceReady() {
        //THE FOLLOWING CODE IS RESPONSIBLE FOR PUSH NOTIFICATIONS
        var pushNotification;

            alert(device.platform);

            try { 
                pushNotification = window.plugins.pushNotification;
                if (device.platform == 'android' || device.platform == 'Android') {
                    $("#app-status-ul").append('<li>registering android</li>');
                    pushNotification.register(successHandler, errorHandler, {"senderID":"hidden-by-me","ecb":"onNotificationGCM"});     // required!
                } else {
                    $("#app-status-ul").append('<li>registering iOS</li>');
                    pushNotification.register(tokenHandler, errorHandler, {"badge":"true","sound":"true","alert":"true","ecb":"onNotificationAPN"});    // required!
                }
            }
            catch(err) { 
                txt="There was an error on this page.\n\n"; 
                txt+="Error description: " + err.message + "\n\n"; 
                alert(txt); 
            } 

            //Rest of the code

            updateData();
            if (window.localStorage.getItem("default-school") == "infant") {
                window.location.replace("infant.html");
            } else 
            if (window.localStorage.getItem("default-school") == "junior") {
                window.location.replace("junior.html");
            };
        }

    // iOS
    function onNotificationAPN(event) {
        if (event.alert) {
            navigator.notification.alert(event.alert);
        }

        if (event.sound) {
            var snd = new Media(event.sound);
            snd.play();
        }

        if (event.badge) {
            pushNotification.setApplicationIconBadgeNumber(successHandler, errorHandler, event.badge);
        }
    }

    // Android
    function onNotificationGCM(e) {
        $("#app-status-ul").append('<li>EVENT -> RECEIVED:' + e.event + '</li>');

        switch( e.event ) {
            case 'registered':
                if ( e.regid.length > 0 ) {
                    $("#app-status-ul").append('<li>REGISTERED -> REGID:' + e.regid + "</li>");
                    // Your GCM push server needs to know the regID before it can push to this device
                    // here is where you might want to send it the regID for later use.
                    console.log("regID = " + e.regID);
                }
                break;

            case 'message':
                // if this flag is set, this notification happened while we were in the foreground.
                // you might want to play a sound to get the user's attention, throw up a dialog, etc.
                if (e.foreground) {
                    $("#app-status-ul").append('<li>--INLINE NOTIFICATION--' + '</li>');

                    // if the notification contains a soundname, play it.
                    var my_media = new Media("/android_asset/www/"+e.soundname);
                    my_media.play();
                }
                else {
                    // otherwise we were launched because the user touched a notification in the notification tray.
                    if (e.coldstart) $("#app-status-ul").append('<li>--COLDSTART NOTIFICATION--' + '</li>');
                    else $("#app-status-ul").append('<li>--BACKGROUND NOTIFICATION--' + '</li>');
                }

                $("#app-status-ul").append('<li>MESSAGE -> MSG: ' + e.payload.message + '</li>');
                $("#app-status-ul").append('<li>MESSAGE -> MSGCNT: ' + e.payload.msgcnt + '</li>');
                break;

            case 'error':
                $("#app-status-ul").append('<li>ERROR -> MSG:' + e.msg + '</li>');
                break;

            default:
                $("#app-status-ul").append('<li>EVENT -> Unknown, an event was received and we do not know what it is</li>');
                break;
        }
    }

    function tokenHandler (result) {
        $("#app-status-ul").append('<li>token: '+ result +'</li>');
        // Your iOS push server needs to know the token before it can push to this device
        // here is where you might want to send it the token for later use.
    }

    function successHandler (result) {
        $("#app-status-ul").append('<li>success:'+ result +'</li>');
    }

    function errorHandler (error) {
        $("#app-status-ul").append('<li>error:'+ error +'</li>');
    }
</script>
    </head>
<body onload="initFastButtons();init();">
    <span id="fastclick">

        <div id="main">
            <ul id="app-status-ul">
                <li>Push Plugin test</li>
            </ul>
        </div>
    </span>
</body>
</html>

誰かがこれについて私を助けることができれば、それは本当に素晴らしいことです.

4

2 に答える 2