如何使用PHP发送服务器错误响应?

jan*_*mon 11 php ajax jquery response

一旦用户单击删除按钮,我的jQuery脚本就会要求服务器删除所选项目.

现在我希望我的php脚本发送成功或错误响应.

如果无法删除项目,是否可以触发错误回调

谢谢


我的jQuery代码:

$.ajax({
 type: "post",
 url: "myAjax.php" ,
 dataType: "text",
 data: {
  some:data
 }, 
 error: function(request,error) 
 {
         // tell the user why he couldn't delete the item
         // timeout , item not found ...
 },

 success: function ( response )
 {
      // tell the user that the item was deleted
         // hide the item
 }
);
Run Code Online (Sandbox Code Playgroud)

Mik*_*e B 13

header("HTTP/1.0 404 Not Found");
header('HTTP', true, 500); // 500 internal server error
// etc etc.. 
Run Code Online (Sandbox Code Playgroud)

查看header()以获取更多选项.所有HTTP错误代码均可供使用.

相关问题:如何使用ASP.NET MVC在jQuery AJAX调用中触发"错误"回调?