ตัวอย่าง jQuery Ajax POST ด้วย PHP


682

ฉันกำลังพยายามส่งข้อมูลจากแบบฟอร์มไปยังฐานข้อมูล นี่คือแบบฟอร์มที่ฉันใช้:

<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 )


3
ดูการอภิปรายเมตาที่เกี่ยวข้องเพื่อหาเหตุผลในการยกเลิกการลบ
TRiG

โซลูชัน vanilla js แบบง่าย ๆ : stackoverflow.com/a/57285063/7910454
leonheess

คำตอบ:


939

การใช้งานพื้นฐานของ.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 พร้อมดังนั้นคุณควรวางไว้ใน$(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


6
แก้ไขคำตอบของคุณเพื่อแก้ไขข้อบกพร่อง: requestได้รับการประกาศว่าเป็นคำสั่งที่if (request) request.abort();ไม่สามารถใช้ได้
Andrey Mikhaylov - lolmaus

23
บันทึกที่สำคัญมากเพราะฉันใช้ / เสีย / ลงทุนไปเป็นจำนวนมากเวลาพยายามใช้ตัวอย่างนี้ คุณต้องผูกเหตุการณ์ภายใน $ (เอกสาร). ready block หรือโหลด FORM ก่อนที่จะทำการผูก มิฉะนั้นคุณจะใช้เวลามากมายในการพยายามค้นหาสาเหตุที่นรกไม่ได้มีการเชื่อมโยง
Philibert Perusse

3
@PhilibertPerusse เช่นเดียวกับการผูกเหตุการณ์ใด ๆ คุณต้องมีองค์ประกอบอยู่ใน DOM ก่อนที่จะพยายามผูกมันหรือถ้าคุณใช้การผูกที่มอบหมาย
mekwall

10
ใช่ฉันเข้าใจแล้ว แต่ฉันพบตัวอย่างมากมายที่ใส่ $ (เอกสาร) พร้อมบล็อกไว้เสมอเพื่อให้ตัวอย่างอยู่ในตัวเอง ฉันเขียนความคิดเห็นสำหรับผู้ใช้ในอนาคตที่อาจสะดุดฉันและจบลงด้วยการอ่านหัวข้อความคิดเห็นและ 'เคล็ดลับ' สำหรับผู้เริ่มต้นนี้
Philibert Perusse

5
หากคุณใช้สิ่งนี้กับรหัสของคุณเองโปรดทราบว่าแอตทริบิวต์ 'ชื่อ' มีความสำคัญอย่างยิ่งต่ออินพุตมิฉะนั้นserialize()จะข้ามไป
Ben Flynn

216

ในการสร้างคำขอ Ajax โดยใช้jQueryคุณสามารถทำได้โดยใช้รหัสต่อไปนี้

HTML:

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

<!-- The result of the search will be rendered inside this div -->
<div id="result"></div>

JavaScript:

วิธีที่ 1

 /* Get from elements values */
 var values = $(this).serialize();

 $.ajax({
        url: "test.php",
        type: "post",
        data: values ,
        success: function (response) {

           // You will get response from your PHP page (what you echo or print)
        },
        error: function(jqXHR, textStatus, errorThrown) {
           console.log(textStatus, errorThrown);
        }
    });

วิธีที่ 2

/* Attach a submit handler to the form */
$("#foo").submit(function(event) {
    var ajaxRequest;

    /* Stop form from submitting normally */
    event.preventDefault();

    /* Clear result div*/
    $("#result").html('');

    /* Get from elements values */
    var values = $(this).serialize();

    /* Send the data using post and put the results in a div. */
    /* I am not aborting the previous request, because it's an
       asynchronous request, meaning once it's sent it's out
       there. But in case you want to abort it you can do it
       by abort(). jQuery Ajax methods return an XMLHttpRequest
       object, so you can just use abort(). */
       ajaxRequest= $.ajax({
            url: "test.php",
            type: "post",
            data: values
        });

    /*  Request can be aborted by ajaxRequest.abort() */

    ajaxRequest.done(function (response, textStatus, jqXHR){

         // Show successfully for submit message
         $("#result").html('Submitted successfully');
    });

    /* On failure of request this function will be called  */
    ajaxRequest.fail(function (){

        // Show error
        $("#result").html('There is error while submit');
    });

.success(), .error()และ.complete()เรียกกลับจะถูกเลิกใช้เมื่อjQuery 1.8 เพื่อเตรียมความพร้อมรหัสของคุณสำหรับการกำจัดของพวกเขาในที่สุดการใช้งาน.done(), .fail()และ.always()แทน

MDN: abort(). หากมีการส่งคำขอไปแล้ววิธีนี้จะยกเลิกการร้องขอ

ดังนั้นเราจึงส่งคำขอ Ajax ได้สำเร็จและตอนนี้ถึงเวลารวบรวมข้อมูลไปยังเซิร์ฟเวอร์แล้ว

PHP

เมื่อเราทำการร้องขอ POST ในการโทร Ajax ( type: "post") เราสามารถคว้าข้อมูลโดยใช้อย่างใดอย่างหนึ่ง$_REQUESTหรือ$_POST:

  $bar = $_POST['bar']

นอกจากนี้คุณยังสามารถดูสิ่งที่คุณได้รับในคำขอ POST ได้ง่ายๆ BTW ตรวจสอบให้แน่ใจว่า$_POSTมีการตั้งค่า มิฉะนั้นคุณจะได้รับข้อผิดพลาด

var_dump($_POST);
// Or
print_r($_POST);

และคุณกำลังแทรกค่าลงในฐานข้อมูล ตรวจสอบให้แน่ใจว่าคุณมีความรู้สึกไวหรือหลบหนีคำขอทั้งหมด (ไม่ว่าคุณจะทำ GET หรือ POST) อย่างถูกต้องก่อนที่จะทำการสืบค้น ที่ดีที่สุดจะใช้งบเตรียม

และถ้าคุณต้องการส่งคืนข้อมูลใด ๆ กลับไปที่หน้าคุณสามารถทำได้โดยเพียงแค่สะท้อนข้อมูลดังกล่าวด้านล่าง

// 1. Without JSON
   echo "Hello, this is one"

// 2. By JSON. Then here is where I want to send a value back to the success of the Ajax below
echo json_encode(array('returned_val' => 'yoho'));

แล้วคุณจะได้รับเช่น:

 ajaxRequest.done(function (response){
    alert(response);
 });

มีวิธีการจดชวเลขสองสามอย่าง คุณสามารถใช้รหัสด้านล่าง มันทำงานได้เหมือนกัน

var ajaxRequest= $.post("test.php", values, function(data) {
  alert(data);
})
  .fail(function() {
    alert("error");
  })
  .always(function() {
    alert("finished");
});

@Clarence bar เป็นชื่อข้อความชนิดอินพุตและเนื่องจากฉันกำลังโพสต์วิธีการโพสต์ดังนั้น $ _POST ['bar'] จะถูกใช้เพื่อรับค่าของมัน
NullPoiиteя

4
สำหรับทุกคนที่ต้องการใช้ json - ในขณะที่ใช้ JSON การโทรควรมีพารามิเตอร์ dataType: 'json'
K. Kilian Lindberg

4
@CarlLindberg - หากคุณต้องการให้ jQuery คาดเดาตามประเภท MIME ของการตอบสนอง (ซึ่งควรทำอย่างไรเมื่อคุณไม่ได้ตั้งค่าdataType) เพื่อให้คุณสามารถยอมรับ JSON หรือรูปแบบอื่นได้
nnnnnn

@nnnnnn คุณถูกต้อง - นั่นเป็นวิธีที่ดีกว่า - แน่นอนว่าเป็นค่าเริ่มต้น: Intelligent Guess
K. Kilian Lindberg

ในการเข้าถึงออบเจ็กต์การตอบสนอง JSON (data.returned_val) อย่าลืมใส่ dataType: "json" ในการโทร ajax ดั้งเดิมของคุณ
Adelmar

56

ฉันต้องการแบ่งปันวิธีการโพสต์ด้วย PHP + Ajax อย่างละเอียดพร้อมกับข้อผิดพลาดที่ถูกส่งกลับมาเมื่อความล้มเหลว

แรกของทุกสร้างสองไฟล์ตัวอย่างและform.phpprocess.php

ก่อนอื่นเราจะสร้างสิ่งformที่จะถูกส่งไปโดยใช้jQuery .ajax()วิธีการ ส่วนที่เหลือจะอธิบายในความคิดเห็น


form.php

<form method="post" name="postForm">
    <ul>
        <li>
            <label>Name</label>
            <input type="text" name="name" id="name" placeholder="Bruce Wayne">
            <span class="throw_error"></span>
            <span id="success"></span>
       </li>
   </ul>
   <input type="submit" value="Send" />
</form>


ตรวจสอบรูปแบบโดยใช้ตรวจสอบฝั่งไคลเอ็นต์ jQuery process.phpและส่งข้อมูลไปยัง

$(document).ready(function() {
    $('form').submit(function(event) { //Trigger on form submit
        $('#name + .throw_error').empty(); //Clear the messages first
        $('#success').empty();

        //Validate fields if required using jQuery

        var postForm = { //Fetch form data
            'name'     : $('input[name=name]').val() //Store name fields value
        };

        $.ajax({ //Process the form using $.ajax()
            type      : 'POST', //Method type
            url       : 'process.php', //Your form processing file URL
            data      : postForm, //Forms name
            dataType  : 'json',
            success   : function(data) {
                            if (!data.success) { //If fails
                                if (data.errors.name) { //Returned if any error from process.php
                                    $('.throw_error').fadeIn(1000).html(data.errors.name); //Throw relevant error
                                }
                            }
                            else {
                                    $('#success').fadeIn(1000).append('<p>' + data.posted + '</p>'); //If successful, than throw a success message
                                }
                            }
        });
        event.preventDefault(); //Prevent the default submit
    });
});

ตอนนี้เราจะดู process.php

$errors = array(); //To store errors
$form_data = array(); //Pass back the data to `form.php`

/* Validate the form on the server side */
if (empty($_POST['name'])) { //Name cannot be empty
    $errors['name'] = 'Name cannot be blank';
}

if (!empty($errors)) { //If errors in validation
    $form_data['success'] = false;
    $form_data['errors']  = $errors;
}
else { //If not, process the form, and return true on success
    $form_data['success'] = true;
    $form_data['posted'] = 'Data Was Posted Successfully';
}

//Return the data back to form.php
echo json_encode($form_data);

แฟ้มโครงการสามารถดาวน์โหลดได้จากhttp://projects.decodingweb.com/simple_ajax_form.zip


27

คุณสามารถใช้การทำให้เป็นอันดับ ด้านล่างเป็นตัวอย่าง

$("#submit_btn").click(function(){
    $('.error_status').html();
        if($("form#frm_message_board").valid())
        {
            $.ajax({
                type: "POST",
                url: "<?php echo site_url('message_board/add');?>",
                data: $('#frm_message_board').serialize(),
                success: function(msg) {
                    var msg = $.parseJSON(msg);
                    if(msg.success=='yes')
                    {
                        return true;
                    }
                    else
                    {
                        alert('Server error');
                        return false;
                    }
                }
            });
        }
        return false;
    });

2
$.parseJSON()เป็นผู้ช่วยชีวิตทั้งหมดขอบคุณ ฉันมีปัญหาในการตีความผลลัพธ์ของฉันตามคำตอบอื่น ๆ
foochow

21

HTML :

    <form name="foo" action="form.php" method="POST" id="foo">
        <label for="bar">A bar</label>
        <input id="bar" class="inputs" name="bar" type="text" value="" />
        <input type="submit" value="Send" onclick="submitform(); return false;" />
    </form>

จาวาสคริปต์ :

   function submitform()
   {
       var inputs = document.getElementsByClassName("inputs");
       var formdata = new FormData();
       for(var i=0; i<inputs.length; i++)
       {
           formdata.append(inputs[i].name, inputs[i].value);
       }
       var xmlhttp;
       if(window.XMLHttpRequest)
       {
           xmlhttp = new XMLHttpRequest;
       }
       else
       {
           xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
       }
       xmlhttp.onreadystatechange = function()
       {
          if(xmlhttp.readyState == 4 && xmlhttp.status == 200)
          {

          }
       }
       xmlhttp.open("POST", "insert.php");
       xmlhttp.send(formdata);
   }

18

ฉันใช้วิธีที่แสดงด้านล่าง มันส่งทุกอย่างเช่นไฟล์

$(document).on("submit", "form", function(event)
{
    event.preventDefault();

    var url  = $(this).attr("action");
    $.ajax({
        url: url,
        type: 'POST',
        dataType: "JSON",
        data: new FormData(this),
        processData: false,
        contentType: false,
        success: function (data, status)
        {

        },
        error: function (xhr, desc, err)
        {
            console.log("error");
        }
    });
});

14

หากคุณต้องการส่งข้อมูลโดยใช้ jQuery Ajax ไม่จำเป็นต้องใช้แท็กแบบฟอร์มและปุ่มส่ง

ตัวอย่าง:

<script>
    $(document).ready(function () {
        $("#btnSend").click(function () {
            $.ajax({
                url: 'process.php',
                type: 'POST',
                data: {bar: $("#bar").val()},
                success: function (result) {
                    alert('success');
                }
            });
        });
    });
</script>

<label for="bar">A bar</label>
<input id="bar" name="bar" type="text" value="" />
<input id="btnSend" type="button" value="Send" />

10
<script src="http://code.jquery.com/jquery-1.7.2.js"></script>
<form method="post" id="form_content" action="Javascript:void(0);">
    <button id="desc" name="desc" value="desc" style="display:none;">desc</button>
    <button id="asc" name="asc"  value="asc">asc</button>
    <input type='hidden' id='check' value=''/>
</form>

<div id="demoajax"></div>

<script>
    numbers = '';
    $('#form_content button').click(function(){
        $('#form_content button').toggle();
        numbers = this.id;
        function_two(numbers);
    });

    function function_two(numbers){
        if (numbers === '')
        {
            $('#check').val("asc");
        }
        else
        {
            $('#check').val(numbers);
        }
        //alert(sort_var);

        $.ajax({
            url: 'test.php',
            type: 'POST',
            data: $('#form_content').serialize(),
            success: function(data){
                $('#demoajax').show();
                $('#demoajax').html(data);
                }
        });

        return false;
    }
    $(document).ready(function_two());
</script>

id ของคุณแตกต่างกันอย่างไรกับคำตอบอื่น ๆ
NullPoiиteя

11
โพสต์โดยฉันคนอื่น ๆ เป็นคนอื่น
John

6

การจัดการข้อผิดพลาด Ajax และตัวโหลดก่อนส่งและหลังการส่งสำเร็จแสดงกล่องการแจ้งเตือนพร้อมตัวอย่าง:

var formData = formData;

$.ajax({
    type: "POST",
    url: url,
    async: false,
    data: formData, // Only input
    processData: false,
    contentType: false,
    xhr: function ()
    {
        $("#load_consulting").show();
        var xhr = new window.XMLHttpRequest();

        // Upload progress
        xhr.upload.addEventListener("progress", function (evt) {
            if (evt.lengthComputable) {
                var percentComplete = (evt.loaded / evt.total) * 100;
                $('#addLoad .progress-bar').css('width', percentComplete + '%');
            }
        }, false);

        // Download progress
        xhr.addEventListener("progress", function (evt) {
            if (evt.lengthComputable) {
                var percentComplete = evt.loaded / evt.total;
            }
        }, false);
        return xhr;
    },
    beforeSend: function (xhr) {
        qyuraLoader.startLoader();
    },
    success: function (response, textStatus, jqXHR) {
        qyuraLoader.stopLoader();
        try {
            $("#load_consulting").hide();

            var data = $.parseJSON(response);
            if (data.status == 0)
            {
                if (data.isAlive)
                {
                    $('#addLoad .progress-bar').css('width', '00%');
                    console.log(data.errors);
                    $.each(data.errors, function (index, value) {
                        if (typeof data.custom == 'undefined') {
                            $('#err_' + index).html(value);
                        }
                        else
                        {
                            $('#err_' + index).addClass('error');

                            if (index == 'TopError')
                            {
                                $('#er_' + index).html(value);
                            }
                            else {
                                $('#er_TopError').append('<p>' + value + '</p>');
                            }
                        }
                    });
                    if (data.errors.TopError) {
                        $('#er_TopError').show();
                        $('#er_TopError').html(data.errors.TopError);
                        setTimeout(function () {
                            $('#er_TopError').hide(5000);
                            $('#er_TopError').html('');
                        }, 5000);
                    }
                }
                else
                {
                    $('#headLogin').html(data.loginMod);
                }
            } else {
                //document.getElementById("setData").reset();
                $('#myModal').modal('hide');
                $('#successTop').show();
                $('#successTop').html(data.msg);
                if (data.msg != '' && data.msg != "undefined") {

                    bootbox.alert({closeButton: false, message: data.msg, callback: function () {
                            if (data.url) {
                                window.location.href = '<?php echo site_url() ?>' + '/' + data.url;
                            } else {
                                location.reload(true);
                            }
                        }});
                } else {
                    bootbox.alert({closeButton: false, message: "Success", callback: function () {
                        if (data.url) {
                            window.location.href = '<?php echo site_url() ?>' + '/' + data.url;
                        } else {
                            location.reload(true);
                        }
                    }});
                }

            }
        }
        catch (e) {
            if (e) {
                $('#er_TopError').show();
                $('#er_TopError').html(e);
                setTimeout(function () {
                    $('#er_TopError').hide(5000);
                    $('#er_TopError').html('');
                }, 5000);
            }
        }
    }
});

5

ฉันใช้รหัสบรรทัดเดียวที่เรียบง่ายนี้มานานหลายปีโดยไม่มีปัญหา (ต้องใช้ jQuery):

<script src="http://malsup.github.com/jquery.form.js"></script> 
<script type="text/javascript">
    function ap(x,y) {$("#" + y).load(x);};
    function af(x,y) {$("#" + x ).ajaxSubmit({target: '#' + y});return false;};
</script>

นี่ ap () หมายถึงหน้า Ajax และ af () หมายถึงรูปแบบ Ajax ในแบบฟอร์มการเรียกฟังก์ชัน af () จะโพสต์แบบฟอร์มไปยัง URL และโหลดการตอบสนองในองค์ประกอบ HTML ที่ต้องการ

<form id="form_id">
    ...
    <input type="button" onclick="af('form_id','load_response_id')"/>
</form>
<div id="load_response_id">this is where response will be loaded</div>

ฉันขอให้คุณรวมไฟล์เซิร์ฟเวอร์! ไม่รู้จะทดสอบยังไง
johny ทำไม

4

ในไฟล์ php ของคุณให้ป้อน:

$content_raw = file_get_contents("php://input"); // THIS IS WHAT YOU NEED
$decoded_data = json_decode($content_raw, true); // THIS IS WHAT YOU NEED
$bar = $decoded_data['bar']; // THIS IS WHAT YOU NEED
$time = $decoded_data['time'];
$hash = $decoded_data['hash'];
echo "You have sent a POST request containing the bar variable with the value $bar";

และในไฟล์ js ของคุณส่ง ajax ด้วยวัตถุข้อมูล

var data = { 
    bar : 'bar value',
    time: calculatedTimeStamp,
    hash: calculatedHash,
    uid: userID,
    sid: sessionID,
    iid: itemID
};

$.ajax({
    method: 'POST',
    crossDomain: true,
    dataType: 'json',
    crossOrigin: true,
    async: true,
    contentType: 'application/json',
    data: data,
    headers: {
        'Access-Control-Allow-Methods': '*',
        "Access-Control-Allow-Credentials": true,
        "Access-Control-Allow-Headers" : "Access-Control-Allow-Headers, Origin, X-Requested-With, Content-Type, Accept, Authorization",
        "Access-Control-Allow-Origin": "*",
        "Control-Allow-Origin": "*",
        "cache-control": "no-cache",
        'Content-Type': 'application/json'
    },
    url: 'https://yoururl.com/somephpfile.php',
    success: function(response){
        console.log("Respond was: ", response);
    },
    error: function (request, status, error) {
        console.log("There was an error: ", request.responseText);
    }
  })

หรือเก็บตามที่เป็นอยู่กับแบบฟอร์มส่ง คุณต้องการสิ่งนี้เท่านั้นหากคุณต้องการส่งคำขอที่แก้ไขพร้อมเนื้อหาเพิ่มเติมจากการคำนวณและไม่เพียง แต่แบบฟอร์มข้อมูลบางอย่างซึ่งลูกค้าป้อน ตัวอย่างเช่นแฮ, การประทับเวลา, หมายเลขผู้ใช้, หมายเลขเซสชันและสิ่งที่คล้ายกัน


2

กรุณาตรวจสอบเรื่องนี้ มันเป็นรหัสคำขอ Ajax ที่สมบูรณ์

$('#foo').submit(function(event) {
    // Get the form data
    // There are many ways to get this data using jQuery (you
    // can use the class or id also)
    var formData = $('#foo').serialize();
    var url = 'URL of the request';

    // Process the form.
    $.ajax({
        type        : 'POST',   // Define the type of HTTP verb we want to use
        url         : 'url/',   // The URL where we want to POST
        data        : formData, // Our data object
        dataType    : 'json',   // What type of data do we expect back.
        beforeSend : function() {

            // This will run before sending an Ajax request.
            // Do whatever activity you want, like show loaded.
        },
        success:function(response){
            var obj = eval(response);
            if(obj)
            {
                if(obj.error==0){
                    alert('success');
                }
                else{
                    alert('error');
                }
            }
        },
        complete : function() {
            // This will run after sending an Ajax complete
        },
        error:function (xhr, ajaxOptions, thrownError){
            alert('error occured');
            // If any error occurs in request
        }
    });

    // Stop the form from submitting the normal way
    // and refreshing the page
    event.preventDefault();
});

นี่คือสิ่งที่ฉันกำลังมองหา
Nirav Bhoi

2

นี่เป็นบทความที่ดีมากที่มีทุกสิ่งที่คุณจำเป็นต้องรู้เกี่ยวกับการส่งแบบฟอร์ม jQuery

สรุปบทความ:

ส่งแบบฟอร์ม HTML อย่างง่าย

HTML:

<form action="path/to/server/script" method="post" id="my_form">
    <label>Name</label>
    <input type="text" name="name" />
    <label>Email</label>
    <input type="email" name="email" />
    <label>Website</label>
    <input type="url" name="website" />
    <input type="submit" name="submit" value="Submit Form" />
    <div id="server-results"><!-- For server results --></div>
</form>

JavaScript:

$("#my_form").submit(function(event){
    event.preventDefault(); // Prevent default action
    var post_url = $(this).attr("action"); // Get the form action URL
    var request_method = $(this).attr("method"); // Get form GET/POST method
    var form_data = $(this).serialize(); // Encode form elements for submission

    $.ajax({
        url : post_url,
        type: request_method,
        data : form_data
    }).done(function(response){ //
        $("#server-results").html(response);
    });
});

HTML Multipart / form-data ส่งแบบฟอร์ม

ในการอัพโหลดไฟล์ไปยังเซิร์ฟเวอร์เราสามารถใช้อินเตอร์เฟส FormData สำหรับ XMLHttpRequest2 ซึ่งสร้างวัตถุ FormData และสามารถส่งไปยังเซิร์ฟเวอร์ได้อย่างง่ายดายโดยใช้ jQuery Ajax

HTML:

<form action="path/to/server/script" method="post" id="my_form">
    <label>Name</label>
    <input type="text" name="name" />
    <label>Email</label>
    <input type="email" name="email" />
    <label>Website</label>
    <input type="url" name="website" />
    <input type="file" name="my_file[]" /> <!-- File Field Added -->
    <input type="submit" name="submit" value="Submit Form" />
    <div id="server-results"><!-- For server results --></div>
</form>

JavaScript:

$("#my_form").submit(function(event){
    event.preventDefault(); // Prevent default action
    var post_url = $(this).attr("action"); // Get form action URL
    var request_method = $(this).attr("method"); // Get form GET/POST method
    var form_data = new FormData(this); // Creates new FormData object
    $.ajax({
        url : post_url,
        type: request_method,
        data : form_data,
        contentType: false,
        cache: false,
        processData: false
    }).done(function(response){ //
        $("#server-results").html(response);
    });
});

ฉันหวังว่านี่จะช่วยได้.


2

ตั้งแต่การแนะนำFetch APIนั้นไม่มีเหตุผลใด ๆ ที่จะทำเช่นนี้กับ jQuery Ajax หรือ XMLHttpRequests หากต้องการโพสต์ฟอร์มข้อมูลลงในสคริปต์ PHP ใน JavaScript วานิลลาคุณสามารถทำสิ่งต่อไปนี้:

function postData() {
    const form = document.getElementById('form');
    const data = new FormData();
    data.append('name', form.name.value);

    fetch('../php/contact.php', {method: 'POST', body: data}).then(response => {
        if (!response.ok){
            throw new Error('Network response was not ok.');
        }
    }).catch(err => console.log(err));
}
<form id="form" action="javascript:postData()">
    <input id="name" name="name" placeholder="Name" type="text" required>
    <input type="submit" value="Submit">
</form>

นี่เป็นตัวอย่างพื้นฐานของสคริปต์ PHP ที่รับข้อมูลและส่งอีเมล:

<?php
    header('Content-type: text/html; charset=utf-8');

    if (isset($_POST['name'])) {
        $name = $_POST['name'];
    }

    $to = "test@example.com";
    $subject = "New name submitted";
    $body = "You received the following name: $name";

    mail($to, $subject, $body);

การสนับสนุน Internet explorer อาจเป็นเหตุผลให้ใช้ jQuery AJAX ต่อไป
Huub S

@HuubS ทำไม เพียงใช้โพลีฟิล jQuery ตายแล้ว IMHO
ไร้สาระ
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.