web-dev-qa-db-ja.com

jQuery Mobile:フォームデータを正しく送信する方法

これはjQuery Mobileの質問ですが、純粋なjQueryにも関係しています。

フォームアクション属性に設定されたページにページ遷移せずにフォームデータを投稿するにはどうすればよいですか。電話ギャップアプリケーションを構築していますが、サーバーのサイドページに直接アクセスしたくありません。

私はいくつかの例を試しましたが、毎回フォームが宛先のphpファイルに転送します。

13
user2001897

はじめに

この例は、jQuery Mobile 1.2を使用して作成されました。最近の例を確認したい場合は、この article またはこのより複雑な 1つ 。あなたは非常に詳細に説明された2つの実用的な例があります。さらに質問がある場合は、記事のコメントセクションで質問してください。

フォームの送信は常にjQuery Mobileの問題です。

これを実現する方法はいくつかあります。それらのいくつかをリストします。

例1:

これは、phonegapアプリケーションを使用していて、サーバー側のphpに直接アクセスしたくない場合に最適なソリューションです。フォンギャップiOSアプリを作成する場合、これは正しいソリューションです。

index.html

<!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/index.js"></script>
</head>
<body>
    <div data-role="page" id="login" data-theme="b">
        <div data-role="header" data-theme="a">
            <h3>Login Page</h3>
        </div>

        <div data-role="content">
            <form id="check-user" class="ui-body ui-body-a ui-corner-all" data-ajax="false">
                <fieldset>
                    <div data-role="fieldcontain">
                        <label for="username">Enter your username:</label>
                        <input type="text" value="" name="username" id="username"/>
                    </div>                                  
                    <div data-role="fieldcontain">                                      
                        <label for="password">Enter your password:</label>
                        <input type="password" value="" name="password" id="password"/> 
                    </div>
                    <input type="button" data-theme="b" name="submit" id="submit" value="Submit">
                </fieldset>
            </form>                              
        </div>

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

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

        <div data-role="content">

        </div>

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

check.php:

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

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

    // Lets say everything is in order
    echo "Username = ";
?>

index.js:

$(document).on('pagebeforeshow', '#login', function(){  
        $(document).on('click', '#submit', function() { // catch the form's submit event
        if($('#username').val().length > 0 && $('#password').val().length > 0){
            // Send data to server through ajax call
            // action is functionality we want to call and outputJSON is our data
                $.ajax({url: 'check.php',
                    data: {action : 'login', formData : $('#check-user').serialize()}, // Convert a form to a JSON string representation
                        type: 'post',                   
                    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) {
                            resultObject.formSubmitionResult = result;
                                        $.mobile.changePage("#second");
                    },
                    error: function (request,error) {
                        // This callback function will trigger on unsuccessful action                
                        alert('Network error has occurred please try again!');
                    }
                });                   
        } else {
            alert('Please fill all nececery fields');
        }           
            return false; // cancel original event to prevent form submitting
        });    
});

$(document).on('pagebeforeshow', '#second', function(){     
    $('#second [data-role="content"]').append('This is a result of form submition: ' + resultObject.formSubmitionResult);  
});

var resultObject = {
    formSubmitionResult : null  
}
20
Gajotres

Index.htmlから別の.phpページを呼び出すのと同じ問題が発生しました。 .phpページは、データの保存と取得、および円グラフの描画を行っていました。ただし、円グラフの描画ロジックを追加すると、ページがまったく読み込まれないことがわかりました。犯人は私のindex.htmlから.phpページを呼び出す行でした:

<form action="store.php" method="post">

これを次のように変更した場合:

<form action="store.php" method="post" data-ajax="false">

、それは正常に動作します。

1
dino

PHPの使用とデータの投稿について

data-ajax = "false"タグを使用する場合は、<form>が最適なオプションです。

0
BGB73