这里大致是我对main.php文件的看法..一个表单,然后是数据显示的位置,然后是javascript:
<form>
<center><h3>Add new person:</h3></center>
<div class="errors"></div>
<input id="nameOfFruit" class="form-control" type="text" placeholder="Name" />
<select id="typeOfFruit" class="selectpicker" data-width="100%">
<option data-name="99">Select Fruit...</option>
<option data-name="1">Tomato</option>
<option data-name="2">Banana</option>
<option data-name="3">Grape</option>
</select>
<select id="nOfFruit" class="selectpicker" data-width="100%">
<option data-name="99"># of Fruit...</option>
<option data-name="1">1</option>
<option data-name="2">2</option>
<option data-name="3">3</option>
</select>
<a href="#" class="btn" id="addFruit">ADD</a>
</form>
这个选择选择器是Silvio Moreto网站上的bootstrap add。 接下来,我有一些代码,其中显示了这些数据的表并正在从数据库中读取。最后,我有javascript:
<script>
$(document).ready(function () {
$('#wlFloorplans').selectpicker();
$('#wlBedrooms').selectpicker();
});
jQuery('#addFruit').click(function () {
var $opt = $("#typeOfFruit option:selected");
var fruitString = $opt.attr("data-name");
var str = "name=" + jQuery("#nameOfFruit").val()
+ "&type=" + fruitString
+ "&number=" + jQuery("#nOfFruit").val();
jQuery.ajax({
type: "post",
url: "/adding_fruit.php",
data: str,
dataType: "json",
success: function(result) {
if (result.success == 1) {
$(document).ajaxStop(function () { location.reload(true); });
$('#typeOfFruit').selectpicker();
$('#nOfFruit').selectpicker();
}
else {
jQuery(".errors").html(result.errors);
}
}
});
});
</script>
问题在于,每次填写表单时,都会发生以下两种情况之一:
一个。我第一次填写它,它将通过ajax调用,而不是在数据库中放入任何数据。然后下次我尝试,它会工作。 湾我第一次尝试填写表单时,它会工作(所有数据都进入数据库,输出在表上),但是第二次,当我按下添加按钮时,所有字段都会自行删除放入DB。
编辑:我的adds_fruit.php文件:
<?php
try {
//DB SETUP
}
catch(PDOException $ex) {
}
$name = trim(isset($_POST['name']) ? $_POST['name'] : '');
$type = trim(isset($_POST['type']) ? $_POST['type'] : '');
$number = trim(isset($_POST['number']) ? $_POST['number'] : '');
$errors = Array();
if (sizeof($_POST) > 0) {
if ($name === '') {
$errors[] = '<div class="alert" role="alert">NEED A NAME</div>';
}
}
if (sizeof($errors) > 0 || sizeof($_POST) == 0) {
$result = array(
"errors" => implode("", $errors),
"success" => 0);
die(json_encode($result));
}
$randID = md5(uniqid(rand(), true));
$sql = "INSERT INTO waitlist (id, name, type, number)
VALUES ('".$randID."', '".$name."', '".$type."', '".$number."')";
$sth = $db->prepare($sql);
$sth->execute();
$result = array(
"success" => 1);
die(json_encode($result));
?>
您是否发现我的代码存在问题?
答案 0 :(得分:0)
使用ajax时,不应重新加载整个页面。这是使用ajax的全部要点(您不必重新加载页面)。我认为您正在寻找的是在用户提交并且服务器响应后清除表单(重置为其原始状态)。
试试这个:
<强>的jQuery 强>
jQuery.ajax({
type: "post",
url: "/adding_fruit.php",
data: str,
dataType: "json",
success: function(result) {
if (result.success == 1) {
$('form').trigger("reset"); //Reset to the original state of the form
$('#typeOfFruit').selectpicker();
$('#nOfFruit').selectpicker();
}
else {
jQuery(".errors").html(result.errors);
}
}
});
在
$(document).ajaxStop(function () { location.reload(true); });
不需要,因为当ajax不依赖地完成ajax调用时执行ajaxStop
,而不是像这样的特定调用。来自文档:
&#34;每当Ajax请求完成时,jQuery都会检查是否存在 任何其他杰出的Ajax请求。如果没有,jQuery会触发 ajaxStop事件。&#34;
当代码中达到done()
时,ajax就会完成&#34;为了你的特定电话,所以那里不需要ajaxStop()
。因此,如果您想在通话后重新加载整个页面:
//This would reload the whole page
//(just as you were hitting the reload-button in the browser)
location.reload(true);
<强> PHP:强>
die(json_encode($result));
说要结束应用程序,但你真正想要的是返回数据:
echo json_encode($result);
return;