我需要知道我的PHP脚本是否可以从数据库中删除一些数据,或者不能。
例如,我有JS函数public void removeNumber();
我怎么知道数据被正确删除?可能我必须从服务器返回一些String,表示尝试从db中删除数据的成功或失败? public String removeNumber();
什么是最佳做法?我知道最好抛出异常,但在这种情况下,客户端和服务器都必须知道Exception类(类映射)。
附:
我用ajax。
答案 0 :(得分:3)
使用ajax将更容易&更好的解决使用jquery ajax会更容易,比如。
$.ajax({
type: "POST",
url: "your_php_page_url",
data: {}, //pass parameter as you need
success: function(response) {
//its the response from php page indicating db deletion was successful or not
// like "deleted" or "failed"
}
});
//and in php you could do
if($yourDbRowDeleted) {
echo "deleted";
}
else {
echo "failed";
}
exit;
希望有所帮助