使用PHP的jQuery Ajax POST示例
我正在尝试将数据从表单发送到数据库。 这是我正在使用的表单:
<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准备好之后完成,因此您应该将它放在$(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;
注意:始终清理发布的数据,以防止注入和其他恶意代码。
您也可以在上面的JavaScript代码中使用简写.post
代替.ajax
:
$.post('/form.php', serializedData, function(response) {
// Log the response to the console
console.log("Response: "+response);
});
注意:上面的JavaScript代码是用于jQuery 1.8和更高版本的,但它应该可以用于jQuery 1.5以前的版本。
要使用jQuery制作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>
<!-- 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 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 cab be abort 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
当我们在ajax调用( type: "post"
)中发出POST请求时,我们现在可以使用$_REQUEST
或$_POST
获取数据
$bar = $_POST['bar']
你也可以通过简单的方法看到你在POST请求中得到了什么,Btw确保$ _POST被设置为其他方式,你会得到错误。
var_dump($_POST);
// or
print_r($_POST);
并且您正在向数据库插入值,确保您在进行查询之前正确地敏感或转义所有请求(天气是GET或POST),Best将使用预准备语句。
如果你想返回任何数据到页面,你可以通过回显如下数据来完成。
// 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" );
});
我想分享如何使用PHP + Ajax发布以及在失败时抛出错误的详细方法。
首先,创建两个文件,例如form.php
和process.php
。
我们将首先创建一个将使用jQuery
.ajax()
方法提交的form
。 其余部分将在评论中解释。
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下载。
链接地址: http://www.djcxy.com/p/12481.html上一篇: jQuery Ajax POST example with PHP
下一篇: How do I make jQuery wait for an Ajax call to finish before it returns?