3

私は、中規模の教育委員会が学校を宣伝するためのモバイル アプリを作成する任務を負っています。当初、これは非常に単純に思えました。私は Cordova と Eclipse を手に入れ、jQuery Mobile ライブラリを放り込んで、最初の学校用にいくつかのページをセットアップしました (全部で 5 つだと思います)。他の 17 のコンテンツのコピー/貼り付け/編集/リンクの更新。

そしたら上司から「各学校の色でページを作って」と言われました。繰り返しますが、簡単です。その後、いくつかの CSS クラスを受講しましたが、100 ページほどのすべてのページがきれいで、学校と一致していました。

それから爆弾が来ました。これまで、データはすべてローカルでした。.htm ファイルは、アプリと一緒にインストールされ、ユーザーがクリックしたときにアプリによって読み込まれるだけでした。データ接続は必要ありませんでした。今朝、アプリを更新せずにその場で情報を変更できるかどうか尋ねられました. 私は、ばかげて、しかし正直に「いいえ」と言いました - そして、あなたは次の要求が何であったかを推測することができます.

だから、私はこれを達成する方法が必要です。私の思考プロセスは、ある種のID番号(appdata.schoolbord.web/123)を受け取るサーバー側で何かを実行することであり、データを含むJSONオブジェクトを返します-おそらくタイトル、名前ページ テンプレート (93 ページを数ページに減らすことができるようにするため)、いくつかの CSS (次の要求を停止するためだけに)、そしてテンプレートにスライドするデータです。

Cordova と jQuery Mobile を使用してこれを行う簡単な方法はありますか? あらゆる方向へのポインタは素晴らしいでしょう。ありがとう。

4

1 に答える 1

1

簡単な例を次に示します。jQM ログイン ページを作成しました。ユーザー名とパスワードを入力する必要があります。このデータは、ユーザー名がデータベースに存在するかどうかを確認するために使用されます。存在する場合は true が返され、それ以外の場合は false が返されます。より良いデータベース読み取りロジックを作成することをお勧めします。これは単純なソリューションであり、SQL インジェクションが発生しやすいですが、割り当てにはうまく機能します。

index.php :

<!DOCTYPE html>
<html>
<head>
    <title>jQM Complex Demo</title>
    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <style>
        #login-button {
            margin-top: 30px;
        }        
    </style>
    <script src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js"></script>    
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
    <script src="js/custom.js"></script>
</head>
<body>
    <div data-role="page" id="login">
        <div data-theme="a" data-role="header">
            <h3>Login Page</h3>
        </div>

        <div data-role="content">
            <label for="username">Enter your username:</label>
            <input type="text" value="" name="username" id="username"/>
            <label for="password">Enter your password:</label>
            <input type="password" value="" name="password" id="password"/>  
            <a data-role="button" id="login-button" data-theme="b">Login</a>
        </div>

        <div data-theme="a" data-role="footer" data-position="fixed">

        </div>
    </div>
    <div data-role="page" id="index">
        <div data-theme="a" data-role="header">
            <h3></h3>
        </div>

        <div data-role="content">
            Here goes content
        </div>

        <div data-theme="a" data-role="footer" data-position="fixed">
            <h3>Page footer</h3>
        </div>
    </div>    
</body>
</html>

json.php :

<?php
    $var1 = $_REQUEST['action']; // We dont need action for this tutorial, but in a complex code you need a way to determine ajax action nature
    $jsonObject = json_decode($_REQUEST['outputJSON']); // Decode JSON object into readable PHP object

    $username = $jsonObject->{'username'}; // Get username from object
    $password = $jsonObject->{'password'}; // Get password from object

    mysql_connect("localhost","root","");  // Conect to mysql, first parameter is location, second is mysql username and a third one is a mysql password
    @mysql_select_db("test") or die( "Unable to select database"); // Connect to database called test

    $query = "SELECT * FROM users WHERE user_name = '".$username."' and user_pass = '".$password."'";
    $result=mysql_query($query);
    $num = mysql_numrows($result);

    if($num != 0) {
        echo "true";
    } else {
        echo "false";        
    }
?>

custom.js :

$(document).on('pagebeforeshow', '#login', function(){ 
    $('#login-button').on('click', function(){
        if($('#username').val().length > 0 && $('#password').val().length > 0){
            userObject.username = $('#username').val(); // Put username into the object
            userObject.password = $('#password').val(); // Put password into the object
            // Convert an userObject to a JSON string representation
            var outputJSON = JSON.stringify(userObject);
            // Send data to server through ajax call
            // action is functionality we want to call and outputJSON is our data
            ajax.sendRequest({action : 'login', outputJSON : outputJSON});
        } else {
            alert('Please fill all nececery fields');
        }
    });    
});

$(document).on('pagebeforeshow', '#index', function(){ 
    if(userObject.username.length == 0){ // If username is not set (lets say after force page refresh) get us back to the login page
        $.mobile.changePage( "#login", { transition: "slide"} ); // In case result is true change page to Index  
    }
    $(this).find('[data-role="header"] h3').append('Wellcome ' + userObject.username); // Change header with wellcome msg
    //$("#index").trigger('pagecreate');
});

// This will be an ajax function set
var ajax = {
    sendRequest:function(save_data){
        $.ajax({url: 'http://localhost/JSONP_Tutorial/json.php',
            data: save_data,
            async: true,
            beforeSend: function() {
                // This callback function will trigger before data is sent
                $.mobile.showPageLoadingMsg(true); // This will show ajax spinner
            },
            complete: function() {
                // This callback function will trigger on data sent/received complete
                $.mobile.hidePageLoadingMsg(); // This will hide ajax spinner
            },
            success: function (result) {
                if(result == "true") {
                    $.mobile.changePage( "#index", { transition: "slide"} ); // In case result is true change page to Index
                } else {
                    alert('Login unsuccessful, please try again!'); // In case result is false throw an error
                }
                // This callback function will trigger on successful action
            },
            error: function (request,error) {
                // This callback function will trigger on unsuccessful action                
                alert('Network error has occurred please try again!');
            }
        });
    }
}

// We will use this object to store username and password before we serialize it and send to server. This part can be done in numerous ways but I like this approach because it is simple
var userObject = {
    username : "",
    password : ""
}

必要に応じて、私の電子メール (ma プロファイルで見つけることができます) で私に連絡してください。ソース コードと使用した SQL スクリプトを含むプロジェクトをお送りします。

于 2013-02-04T16:26:13.200 に答える