gpt4 book ai didi

javascript - jquery ajax 请求不返回页面

转载 作者:行者123 更新时间:2023-11-30 17:06:27 24 4
gpt4 key购买 nike

我的表单将多个文本字段和一个文件上传到 php 脚本以保存文件并将文本字段保存到 sql 数据库。那行得通,我的 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">

最佳答案

几个问题:

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

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

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

contentType: false,
processData: false

注意:ajax 文件上传不适用于 IE < 10


使用 event.preventDefault 而不是 return false 也是一个好习惯(至少在调试时),并且在处理程序的顶部执行此操作,这样如果出现任何语法错误,您的表单不会提交,让您无法看到错误。有关示例,请参见 Preston S 的回答。

关于javascript - jquery ajax 请求不返回页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27930094/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com