如何使用PHP发送服务器错误响应?(How to send a server error respo

2019-09-01 15:49发布

一旦用户点击删除按钮我的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
 }
);

Answer 1:

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

退房头()查看更多选项。 所有HTTP错误代码都可以使用。

相关的问题: 你如何触发“错误”回调使用ASP.NET MVC jQuery的AJAX调用?



文章来源: How to send a server error response using php?