当前位置: 首页 > 面试题库 >

带有PHP的jQuery Ajax POST示例

裘嘉木
2023-03-14
问题内容

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

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

注意:始终 清理发布的数据,以防止注入和其他恶意代码。

你也可以使用速记.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之前的版本。



 类似资料:
  • 问题内容: 我使用了 python -m SimpleHTTPServer ,但是PHP文件不会执行,而是直接下载了。 问题答案: Python Web服务器将您的PHP文件发送给浏览器的原因很可能是因为未配置它或无法处理PHP文件。参见https://serverfault.com/questions/338394/how- to-run-php-with- simplehttpserver P

  • 问题内容: 假设以下路由访问xml文件,以给定的xpath(?key =)替换特定标签的文本: 然后,我将使用cURL这样: xpath扩展应该访问标记以将其当前文本更改为“ John”。 我不知道如何实现这一目标,因为我才刚刚开始学习Flask和REST,在这种情况下我找不到很好的例子。另外,我想使用lxml来操纵xml文件,因为我已经知道了。 有人可以提供帮助并提供示例指导我吗? 问题答案:

  • 本文向大家介绍带有babel的webpack.config.js的示例,包括了带有babel的webpack.config.js的示例的使用技巧和注意事项,需要的朋友参考一下 示例 依存关系 webpack.config.js            

  • 问题内容: 我正在写一个从数据库源中提取的php程序。某些varchar的引号显示为带有问号的黑色菱形(…,REPLACEMENT CHARACTER,我从Microsoft Word文本假定)。 如何使用php去除这些字符? 问题答案: 如果看到该字符(U + FFFD“ REPLACEMENT CHARACTER”),则通常意味着文本本身以某种形式的单字节编码进行编码,但以一种Unicode编

  • 我一直在使用斯波菲派的API。我想对播放列表执行一些操作,这些操作需要用户登录。我想执行以下 URL,以便可以获得授权持有者: https://accounts.spotify.com/authorize/?client_id=CLIENT_ID 当我在浏览器URL字段中执行此操作时,它工作正常,并将返回一个授权令牌。我尝试从index.php文件执行此操作,但遇到了问题。 当我运行该文件时,会出

  • 问题内容: 我的代码中的子类别有些麻烦。 我的期望: 面包店 罐头食品 乳制品 肉 子类别 子类别 … 子类别 糖果和零食 子类别 子类别 … 子类别 MYSQL表架构: 分类: id类别名称url类型 结果:http : //www.picupload.us/images/454result.png 谢谢您的时间,福克斯·桑克(Fox Sank) 编辑: 这是桌子 问题答案: 我尝试这段代码,它