PHP के साथ jQuery Ajax POST उदाहरण


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

सरल वेनिला जे एस समाधान: 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:

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

नोट: उपरोक्त जावास्क्रिप्ट कोड jQuery 1.8 और बाद के संस्करण के साथ काम करने के लिए बनाया गया है, लेकिन इसे पिछले संस्करणों के साथ jQuery 1.5 तक काम करना चाहिए।


6
बग को ठीक करने के लिए अपने जवाब को संपादित किया: requestस्थानीय संस्करण के रूप में घोषित किया गया था जो if (request) request.abort();कभी काम नहीं करता है।
एंड्री मिखायलोव - lolmaus

23
एक बहुत महत्वपूर्ण नोट, क्योंकि मैंने इस उदाहरण का उपयोग करने में बहुत समय बिताया / बर्बाद किया। आपको या तो घटना को एक $ (दस्तावेज़) के अंदर बाँधने की आवश्यकता है। पहले से ही ब्लॉक है या बाँध निष्पादित होने से पहले फार्म लोड है। अन्यथा, आप बहुत सारा समय व्यतीत करने की कोशिश कर रहे हैं जो नरक में बाध्यकारी नहीं है।
फिलीबर्ट पेरूस

3
@PhilibertPerusse किसी भी ईवेंट बाइंडिंग के साथ की तरह आप को इसे बांधने की कोशिश करने से पहले, या यदि आप एक प्रत्यायोजित बाइंड का उपयोग करते हैं, तो जाहिर है कि DOM में मौजूद तत्व की आवश्यकता है।
मेकवॉल

10
हां, अब मैं समझ गया हूं। लेकिन मुझे कई उदाहरण मिले जिन्होंने हमेशा एक $ (दस्तावेज़) रखा था। पहले से ही चारों ओर से ब्लॉक कर दिया ताकि उदाहरण आत्म-निहित हो। मैंने एक भावी उपयोगकर्ता के लिए टिप्पणी लिखी है, जो मेरी तरह हो सकता है, इस पर ठोकर खाए और टिप्पणी धागा और इस शुरुआती 'टिप' को
पढ़े

5
यदि आप इसे अपने कोड में लागू कर रहे हैं, तो ध्यान दें कि इनपुट्स के लिए 'नाम' विशेषताएँ महत्वपूर्ण हैं अन्यथा serialize()उन्हें छोड़ दिया जाएगा।
बेन फ्लिन

216

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>

जावास्क्रिप्ट:

विधि 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()। यदि अनुरोध पहले ही भेजा जा चुका है, तो यह विधि अनुरोध को रद्द कर देगी।

इसलिए हमने सफलतापूर्वक एक अजाक्स अनुरोध भेजा है, और अब सर्वर पर डेटा हड़पने का समय है।

पीएचपी

जैसा कि हम एक अजाक्स कॉल ( type: "post") में 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");
});

@ कर्लेंस बार इनपुट प्रकार का टेक्स्ट नाम है और चूंकि मैं पोस्ट विधि का मुकदमा कर रहा हूं, इसलिए $ _POST ['बार'] का उपयोग इसके मूल्य प्राप्त करने के लिए किया जाता है
NullPoiиteя

4
JSON का उपयोग करने के इच्छुक किसी भी व्यक्ति के लिए - JSON का उपयोग करते समय कॉल में पैरामीटर डेटा टाइप होना चाहिए: 'json'
K. Kilian Lindberg

4
@CarlLindberg - अगर आप चाहते हैं कि jQuery को MIME प्रकार की प्रतिक्रिया के आधार पर अनुमान लगाना चाहिए (जो कि आपको सेट नहीं करने पर क्या करना चाहिए dataType), ताकि आप संभावित रूप से JSON या किसी अन्य प्रारूप को स्वीकार कर सकें ?
nnnnnn

@nnnnnn आप सही हैं - यह बेहतर है - वास्तव में डिफ़ॉल्ट है: बुद्धिमान लगता है
। लिंडनबर्ग

JSON प्रतिक्रिया ऑब्जेक्ट (data.returned_val) को एक्सेस करने के लिए, डेटा टाइप को शामिल करना न भूलें: अपने मूल अजाक्स कॉल में "json"
Adelmar

56

मैं PHP + Ajax के साथ पोस्ट करने का एक विस्तृत तरीका साझा करना चाहूंगा, साथ ही त्रुटियों को विफलता पर वापस लाया जाएगा।

सबसे पहले, दो फाइलें बनाएं, उदाहरण के लिए form.phpऔर process.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>

तुम्हारा और अन्य उत्तर के बीच क्या अंतर है?
नलपुइयेटे

11
यह मेरे द्वारा अन्य लोगों द्वारा पोस्ट किया जाता है,।
जॉन

6

जमा करने से पहले और सफलता के बाद अजाक्स त्रुटियों और लोडर को संभालना एक उदाहरण के साथ एक अलर्ट बूट बॉक्स दिखाता है:

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>

यहाँ एपी () का अर्थ अजाक्स पृष्ठ और एफ () का अर्थ अजाक्स रूप है। एक फॉर्म में, केवल कॉलिंग एफ () फ़ंक्शन 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>

काश, आप सर्वर फ़ाइल को शामिल करते! परीक्षण करने का कोई विचार नहीं है।
जॉनी क्यों

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 फ़ाइल में डेटा ऑब्जेक्ट के साथ एक अजाक्स भेजें

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

कृपया इसे जाँचे। यह पूरा अजाक्स अनुरोध कोड है।

$('#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();
});

यही है जिसकी मेरे द्वारा तलाश की जा रही है।
नीरव भोई

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>

जावास्क्रिप्ट:

$("#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 मल्टीपार्ट / फॉर्म-डेटा फॉर्म सबमिट करें

सर्वर पर फाइलें अपलोड करने के लिए, हम XMLHttpRequest2 के लिए उपलब्ध फॉर्मटाटा इंटरफेस का उपयोग कर सकते हैं, जो फॉर्मडाटा ऑब्जेक्ट का निर्माण करता है और इसे आसानी से सर्वर पर भेजा जा सकता है।

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>

जावास्क्रिप्ट:

$("#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-स्क्रिप्ट के लिए डेटा को POST करने के लिए आप निम्न कार्य कर सकते हैं:

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

इंटरनेट एक्सप्लोरर समर्थन jQuery AJAX का उपयोग कर रखने के लिए एक कारण हो सकता है
Huub S

@ हब्स क्यों? बस एक पॉलीफिल का उपयोग करें। jQuery मर चुका है IMHO।
अकेलापन
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.