我的jquery移动应用程序有问题
我正在尝试更新我的数据库中的一些东西,但它不起作用。我没有从JS或PHP文件中获得任何错误(除非我在没有提交任何内容的情况下打开update.php,但是唯一的错误是我使用$ _POST绑定的值的未定义索引)。
最奇怪的部分是INSERT INTO的相同代码实际上正在工作。
这是工作代码:
-JS:
$(document).ready(function(){
$("#saveForm").submit(function(){
var formData=$(this).serialize();
$.post('save.php',formData,processData).error(errorResponse);
function processData(data){
$("#popupSave").popup();
$("#popupSave").popup("open");
};
function errorResponse(){
alert("Something went wrong!");
};
return false; //Prevent the form from reloading
}); //end of submit function
}); //end of jquery document
-PHP:
<?php
$dsn = "mysql:host=localhost;dbname=titlesdbs";
$username="root";
$password="";
try
{
$conn = new PDO($dsn, $username, $password);
echo 'Connected!';
}
catch(PDOException $error)
{
echo 'Connection no established: ' . $error->getMessage();
}
$sql="INSERT INTO titlestbl (title, pages, date) VALUES(:title, :pages, :date)";
try {
$st=$conn->prepare($sql);
$st->bindValue(':title', $_POST['title'], PDO::PARAM_STR);
$st->bindValue(':pages', $_POST['pages'], PDO::PARAM_STR);
$st->bindValue(':date', $_POST['date'], PDO::PARAM_STR);
$st->execute();
}
catch (PDOException $e) {
echo "Server error - Try again".$e->getMessage();
};
$conn=null;
?>
代码不起作用:
-JS:
$(document).ready(function(){
$("#updateForm").submit(function(){
var formData=$(this).serialize();
$.post('update.php',formData,processData).error(errorResponse);
function processData(data){
$("#popupUpdate").popup();
$("#popupUpdate").popup("open");
};
function errorResponse(){
alert("Something went wrong!");
};
return false; //Prevent the form from reloading
}); //end of submit function
}); //end of jquery document
-PHP:
<?php
$dsn = "mysql:host=localhost;dbname=titlesdbs";
$username="root";
$password="";
try
{
$conn = new PDO($dsn, $username, $password);
//echo 'Connected!';
}
catch(PDOException $error)
{
echo 'Connection no established: ' . $error->getMessage();
}
$sql="UPDATE titlestbl SET check=1, summary=':summary', quotes=':quotes', comments=':comments' WHERE id=:id";
try {
$st=$conn->prepare($sql);
$st->bindValue(':id', $_POST['id'], PDO::PARAM_STR);
$st->bindValue(':summary', $_POST['summary'], PDO::PARAM_STR);
$st->bindValue(':quotes', $_POST['quotes'], PDO::PARAM_STR);
$st->bindValue(':comments', $_POST['comments'], PDO::PARAM_STR);
$st->execute();
}
catch (PDOException $e) {
echo "Server error - Try again".$e->getMessage();
};
$conn=null;
?>
这是一个我无法找到的愚蠢错误,还是我应该这样做?
答案 0 :(得分:0)
您在绑定变量周围有引号('
s),这会将它们转换为字符串文字并破坏您的更新。删除它们,你应该没问题:
$sql = "UPDATE titlestbl SET check=1, summary=:summary, quotes=:quotes, comments=:comments WHERE id=:id";