jquery ajax请求不返回页面

时间:2015-01-13 19:33:34

标签: javascript php ajax

我的表单将多个文本字段和一个文件上传到php脚本以保存文件并将文本字段保存到sql db。这是有效的,我的PHP脚本以

结束
             ('state'  => 200, "success" => true, "id" => $_POST['id'], "titlea" => $_POST['title'], "addressa" => $_POST['address'], "lot_sizea" => $_POST['lot_size'], "zoninga" => $_POST['zoning'], "build_sizea" => $_POST['build_size'], "sale_pricea" => $_POST['sale_price'], "lease_pricea" => $_POST['lease_price'], "commenta" => $_POST['comment'], "transactiona" => $_POST['transaction'], "ad_linka" => $ad_link, 
             );
  exit(json_encode($response));

返回json编码的响应。然而,返回是停留在php页面上,而不是返回到带有ajax请求的页面。这是我的ajax脚本:

$("document").ready(function() {
    $(".data-form").submit(function() {
        var formData = new FormData($('form')[0]);
        if (confirm("\t\t\tAre you ready to sumbmit this listing?\nYou can always edit the listing after going to the menu tab - edit listing.")) {
            $.ajax({
                type: "POST",
                dataType: "json",
                url: "add-list.php",
                data: formData,

                success: function(response) {
                    if (response.success) {
                        $("#modal1").modal('hide');
                        $("#add_frame").show();
                        $("#newbutt").show();
                        $(".atitle").html('<a href="' + response.ad_linka + '" target="_blank">' + response.titlea + '</a>');
                        $(".acomment").html(response.commenta);
                        $(".aaddress").html(response.addressa);
                        $(".asale-price").html(response.sale_pricea);
                        $(".alease-price").html(response.lease_pricea);
                        $(".alot-size").html(response.lot_sizea);
                        $(".abuilding-size").html(response.build_sizea);
                        $(".azoning").html(response.zoninga);
                    } else {
                        console.log("An error has ocurred: sentence: " + response.sentence + "error: " + response.error);
                    }
                },
                error: function() {
                    alert("An Error has ocurred contacting the server. Please contact your system administrator");
                }
            });
            return false;
        }
    });
});

如何更改此设置以便我可以返回页面并允许成功方法运行?

以下是表单的开头:

<form class="avatar-form" enctype="multipart/form-data" method="POST">

1 个答案:

答案 0 :(得分:2)

夫妻问题:

首先,您需要确保选择正确的表单。 $('form')将选择所有表单,$('form')[0]将选择第一个表单。你应该改为定位正确的表格。

$('.data-form')[0]

接下来,在发送FormData时,您必须将processData和contentType设置为false,以便jQuery不会尝试处理FormData。 (这是在$.ajax({...})

内完成的
contentType: false,
processData: false

注意:ajax文件上传不适用于IE&lt; 10


使用event.preventDefault而不是返回false也是一种很好的做法(至少在调试时),并且在处理程序的顶部执行此操作,以便在发生任何语法错误时,您的表单将不会提交让你无法看到错误。请参阅Preston S的答案。