PHP trigger AJAX error code without using array(PHP在不使用数组的情况下触发AJAX错误代码)
问题描述
我希望能够获得一个通过 AJAX 调用的 PHP 脚本,以返回 jQuery AJAX 处理程序 error:
将处理的错误代码.我不想使用 JSON 数组 - 我想保持它尽可能干净.有人能指出我正确的方向吗?
I want to be able to get a PHP script called via AJAX to return with an error code that the jQuery AJAX handler error:
will handle. I don't want to use a JSON array - I'd like to keep it as clean as possible. Can someone point me in the right direction?
谢谢,
詹姆斯
推荐答案
如果要触发 AJAX 错误处理程序,只需传回 200 以外的内容!试试这个:
If you want to trigger the AJAX error handler, just pass back something other than a 200! Try this:
<?php
header("HTTP/1.0 404 Not Found");
exit();
?>
只要记住做两件事:
- 尝试发送正确的错误代码以符合 HTTP 方法.即如果您的页面抛出错误,那么您应该返回 500 等.您可以查看参考 在 w3.org 网站上.
- 确保在除空格之外的任何其他内容之前发送标头.
这应该是您想要的干净解决方案.
This should be the clean solution you are going for.
这篇关于PHP在不使用数组的情况下触发AJAX错误代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP在不使用数组的情况下触发AJAX错误代码
基础教程推荐
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01