执行$.getJSON()
时调用的页面每次调用脚本时都会执行其工作(当用户单击链接/按钮时),尽管与其关联的函数不会执行任何操作!
这在Script.php
文件中:
$('a.addCategorie').click(function (e)
{
e.preventDefault();
var dialog='<div id="Dialog_AddCategory">\
<div id="tableContainer">\
<table class="categoryTable">\
<thead>\
<tr>\
<th>Ordre</th>\
<th>Catégorie</th>\
<th> </th>\
</tr>\
</thead>\
<tbody>\
<?php
$sql="SELECT nom, ordre FROM category ORDER BY ordre";
$result=mysql_query($sql);
while($row=mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>". $row['ordre'] ."</td>";
echo "<td>". utf8_decode($row['nom']) ."</td>";
echo "<td id=\"" . $row['ordre'] . "\" class=\"deleteCat\"></td>";
echo "</tr>\\\n";
}
?>
</tbody>\
</table></div>\
<div id="addCategorie_Form">\
<form>\
<label for="nomCategorie">Nom de la catégorie</label>\
<input type="text" name="nomCategorie" id="nomCategorie"/>\
<label for="ordreCategorie">Ordre</label>\
<input type="text" name="ordreCategorie" id="ordreCategorie"/>\
</form>\
</div></div>';
$('body').append(dialog);
$( '#Dialog_AddCategory' ).dialog({
autoOpen: false,
modal: true,
width: 800,
height: 400,
open: function(even, ui) { $(".ui-dialog-titlebar-close", ui.dialog).css("visibility","hidden");},
title: "Nouvelle catégorie",
resizable: false,
hide:'slide',
show:'slide',
buttons:
{
"Créer la catégorie":function()
{
var ok = true;
if(isNaN($('#ordreCategorie').val()) || $('#ordreCategorie').val().length < 1)
{
ok = false;
$('#ordreCategorie').css("background-color","#F00");
}
else
{
$('#ordreCategorie').css("background-color","#CF0");
}
if($('#nomCategorie').val().length< 3)
{
ok = false;
$('#nomCategorie').css("background-color","#F00");
}
else
{
$('#nomCategorie').css("background-color","#CF0");
}
if(ok)
{
var ordre = $('#ordreCategorie').val();
var nom = $('#nomCategorie').val();
$.getJSON('addCategory.php', {'ordre':ordre,'nom':nom}, function(data)
{
console.log("THIS LOG WON'T APPEAR AND THE CODE WON'T EXECUTE.");
if( data.result === "false" )
{
$('div id="Dialog_Feedback">Une catégorie porte déjà ce nom ou cet ordre!</div>').dialog(
{
autoOpen:false,
title:'Une erreur est survenue!',
width:200,
height:'auto',
resizable: false,
modal:true,
buttons:
{
"OK" : function()
{
$( this ).remove();
}
}
});
}
else
{
$('<div id="Dialog_Feedback">L\'ajout a été effectué avec succès!</div>').dialog({
autoOpen:false,
title:'Catégorie ajoutée!',
width:400,
height:'auto',
resizable:false,
modal:true,
buttons:{
"Ok": function()
{
$(this).remove();
window.location.reload();
}
}
});
}
$('#Dialog_Feedback').dialog("open");
});
}
},
"Annuler":function()
{
$( this ).remove();
}
}
});
以下是addCategory.php
页面:
<?php
include('../../anything.php');
$nom = $_GET['nom'];
$ordre = $_GET['ordre'];
$sql = "SELECT ordre, nom FROM category";
$checking = mysql_query($sql);
$ok = true;
while ($row=mysql_fetch_array($checking))
{
echo "test";
if((strtolower($nom) === strtolower($row['nom'])) || ($ordre === $row['ordre']))
{
$ok = false;
}
}
if ($ok)
{
$sql = "INSERT INTO category (nom,ordre) VALUES('$nom',$ordre)";
$result = mysql_query($sql);
mysql_close($connexion);
echo json_encode(array("result"=>"true"));
}
else
{
echo json_encode(array("result"=>"false"));
}
?>
任何人都知道可能导致这种情况的原因是什么?我检查了在GET中发送的两个变量,它们包含一些内容。
我的PHP页面返回JSON编码的结果,如下所示:
echo json_encode(array("result"=>"true"));
感谢大家的时间。
修改:我忘了提及两者 Chrome Inspector和Firebug都不报告整个脚本执行中的任何错误。 console.log()
部分也没有出现,这意味着PHP页面中的命令被执行,但$.get()
中包含的javascript函数未被触发。
Edit2 :我也尝试将echo
来电更改为echo true;
和return true;
。
Edit3 :我可以在Chrome Inspector和Firebug的“网络”标签中看到PHP页面的结果:{"result":"false"}array(1) {
["result"]=>
string(5) "false"
}
它表明问题将存在于$.getJSON()
调用中!但是一切似乎都很好!
答案 0 :(得分:1)
如果将无效的JSON传递给$.getJSON
,则不会触发成功回调。正如您在编辑中提到的那样,您将收到类似{"result":"false"}array(1) { ["result"]=> string(5) "false" }
的回复,这肯定不是有效的JSON。
更正你的脚本以生成有效的JSON,你应该好好去!