1. ホーム
  2. ジャバスクリプト

[解決済み】PHPによるjQuery Ajax POSTの例

2022-03-23 09:13:02

質問

あるフォームからデータベースにデータを送信しようとしています。以下は、私が使用しているフォームです。

<form name="foo" action="form.php" method="POST" id="foo">
    <label for="bar">A bar</label>
    <input id="bar" name="bar" type="text" value="" />
    <input type="submit" value="Send" />
</form>

一般的な方法としては、フォームを送信することになりますが、これではブラウザがリダイレクトしてしまいます。jQueryと Ajax , フォームのデータをすべて取り込んで、PHPスクリプトに送信することは可能でしょうか(一例です。 form.php )?

解決方法は?

の基本的な使い方 .ajax は、次のようになります。

HTMLです。

<form id="foo">
    <label for="bar">A bar</label>
    <input id="bar" name="bar" type="text" value="" />

    <input type="submit" value="Send" />
</form>

jQueryです。

// Variable to hold request
var request;

// Bind to the submit event of our form
$("#foo").submit(function(event){

    // Prevent default posting of form - put here to work in case of errors
    event.preventDefault();

    // Abort any pending request
    if (request) {
        request.abort();
    }
    // setup some local variables
    var $form = $(this);

    // Let's select and cache all the fields
    var $inputs = $form.find("input, select, button, textarea");

    // Serialize the data in the form
    var serializedData = $form.serialize();

    // Let's disable the inputs for the duration of the Ajax request.
    // Note: we disable elements AFTER the form data has been serialized.
    // Disabled form elements will not be serialized.
    $inputs.prop("disabled", true);

    // Fire off the request to /form.php
    request = $.ajax({
        url: "/form.php",
        type: "post",
        data: serializedData
    });

    // Callback handler that will be called on success
    request.done(function (response, textStatus, jqXHR){
        // Log a message to the console
        console.log("Hooray, it worked!");
    });

    // Callback handler that will be called on failure
    request.fail(function (jqXHR, textStatus, errorThrown){
        // Log the error to the console
        console.error(
            "The following error occurred: "+
            textStatus, errorThrown
        );
    });

    // Callback handler that will be called regardless
    // if the request failed or succeeded
    request.always(function () {
        // Reenable the inputs
        $inputs.prop("disabled", false);
    });

});

注:jQuery 1.8以降。 .success() , .error().complete() は非推奨で、代わりに .done() , .fail().always() .

注意: 上記のスニペットは DOM ready の後に実行する必要があることを忘れないでください。 $(document).ready() ハンドラ(または $() という略記があります)。

ヒント:あなたは チェーン は、次のようにコールバックハンドラを指定します。 $.ajax().done().fail().always();

PHP(つまり、form.php)です。

// You can access the values posted by jQuery.ajax
// through the global variable $_POST, like this:
$bar = isset($_POST['bar']) ? $_POST['bar'] : null;

注:常に 投稿データのサニタイズ インジェクションやその他の悪意のあるコードを防ぐためです。

また .post の代わりに .ajax を上記のJavaScriptコードに追加してください。

$.post('/form.php', serializedData, function(response) {
    // Log the response to the console
    console.log("Response: "+response);
});

注:上記のJavaScriptコードは、jQuery 1.8以降で動作するように作られていますが、jQuery 1.5までの旧バージョンでも動作するはずです。