jQuery Ajax POST 示例与 PHP

2022-08-29 22:30:00

我正在尝试将数据从表单发送到数据库。以下是我正在使用的表单:

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


答案 1

.ajax 的基本用法如下所示:

网页:

<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(即表单.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 代替上面的 JavaScript 代码:.ajax

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

注意:上面的JavaScript代码适用于jQuery 1.8及更高版本,但它应该适用于jQuery 1.5的早期版本。


答案 2

要使用jQuery发出Ajax请求,您可以通过以下代码执行此操作。

网页:

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

、 和回调在 jQuery 1.8 中已弃用。若要为最终删除它们准备代码,请改用 、 和 。.success().error().complete().done().fail().always()

MDN: abort() .如果已发送请求,则此方法将中止请求。

因此,我们已经成功发送了Ajax请求,现在是时候将数据抓取到服务器了。

菲律宾比索

当我们在 Ajax 调用 () 中发出 POST 请求时,我们现在可以使用 以下任一方式获取数据:type: "post"$_REQUEST$_POST

  $bar = $_POST['bar']

您还可以通过任何一种方式查看您在POST请求中获得的内容。顺便说一句,请确保已设置。否则,您将收到错误。$_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");
});