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