【问题标题】:Display PHP errors in ajax request callback在 ajax 请求回调中显示 PHP 错误
【发布时间】:2018-12-26 23:23:27
【问题描述】:

在一个页面test.php 中,我只是激活了错误报告,我停用了日志记录,并调用了一个函数test(),它不存在。正如预期的那样,如果我运行代码,我会收到错误消息:

(!) Fatal error: Uncaught Error: Call to undefined function test() in [path-to]/test.php on line 7
(!) Error: Call to undefined function test() in [path-to]/test.php on line 7
Call Stack
# Time    Memory  Function    Location
1 0.1336  355848  {main}( )   .../test.php:0

现在,在另一个页面 index.php 中,我只有一个按钮 - 名为 testButton。如果我按下它,则会执行对页面test.php 的ajax 请求。在index.php 我希望看到:

  • test.php中抛出的错误由ajax请求的error回调处理;
  • 错误显示在屏幕上。

不幸的是,这一切都没有发生。当我按下按钮时:

  • 调用ajax请求的success回调;
  • 屏幕上未显示错误。

您能帮我找出问题,或找出错误吗?

谢谢。


使用的系统:

  • PHP:7.1.1
  • Apache 版本:2.2.31
  • Apache API 版本:20051115
  • jQuery: 3.3.1

test.php:

<?php

error_reporting(E_ALL);
ini_set('display_errors', 1);
ini_set('log_errors', 0);

$data = test();

index.php:

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes" />
        <meta charset="UTF-8" />
        <!-- The above 3 meta tags must come first in the head -->

        <title>Test: Displaying Errors</title>

        <script src="https://code.jquery.com/jquery-3.3.1.min.js" type="text/javascript"></script>

        <script type="text/javascript">
            $(document).ready(function () {
                $('#testButton').click(function (event) {
                    $.ajax({
                        method: 'post',
                        dataType: 'html',
                        url: 'test.php',
                        data: {},
                        success: function (response, textStatus, jqXHR) {
                            $('#result').html('Successful test... Unfortunately :-)');
                        },
                        error: function (jqXHR, textStatus, errorThrown) {
                            /*
                             * When an HTTP error occurs, errorThrown receives the textual portion of
                             * the HTTP status, such as "Not Found" or "Internal Server Error". This
                             * portion of the HTTP status is also called "reason phrase".
                             */
                            var message = errorThrown;

                            /*
                             * If a response text exists, then set it as message,
                             * instead of the textual portion of the HTTP status.
                             */
                            if (jqXHR.responseText !== null && jqXHR.responseText !== 'undefined' && jqXHR.responseText !== '') {
                                message = jqXHR.responseText;
                            }

                            $('#result').html(message);
                        }
                    });
                });
            });
        </script>
    </head>
    <body>

        <h3>
            Test: Displaying Errors
        </h3>

        <div id="result">
            Hier comes the test result. Since an error is thrown, I expect it to appear hear.
        </div>

        <br/>

        <form method="post" action="">
            <button type="button" id="testButton" name="testButton">
                Start the test
            </button>
        </form>

    </body>
</html>

【问题讨论】:

  • 你的success中的response是否回调了PHP错误文本?
  • 谢谢,@Phil。是的!您是否知道一种在 ajax 请求的 error 回调中抛出该错误的方法?
  • 不是完全相同的副本(而且它很旧)但值得链接〜stackoverflow.com/questions/1555862/…
  • 另一方面,Apache 2.2 已经很老了。如果可能,您可能需要考虑升级它。

标签: php ajax error-handling


【解决方案1】:

jQuery AJAX 调用中的successerror 函数只检查请求的HTTP 状态代码。当 PHP 产生错误时,它不会改变状态码,因此 jQuery 会触发 success 函数。如果要使用 jQuery 错误,则必须更改状态代码。您可以通过捕获Error (PHP >= 7) 来做到这一点:

try {
    $data = test();
}
catch (\Error $e) {
    http_response_code(500);
    echo $e->getMessage();
}

或者您可以将状态代码保留为 200(默认)并以 JSON 格式发送您的响应,包括您喜欢的成功和错误属性,以及您可能希望随请求返回的任何其他内容。

header('Content-type: application/json');
$response['success'] = true;
$response['error'] = null;
try {
    $data = test();
}
catch (\Error $e) {
    $response['success'] = false;
    $response['error'] = $e->getMessage();
}
echo json_encode($response);

并确保从 ajax 请求中删除 dataType 属性,以让 jQuery 自动确定类型标头。

如果您的程序意外抛出错误,这可能意味着您做错了什么。如果您希望它抛出错误,则需要捕获它们。这要么意味着将事物包装在 try/catch 块中,要么将 set_exception_handler()set_error_handler()register_shutdown_function() 组合起来以在全局范围内完成此任务。

【讨论】:

  • 最好让 PHP 为响应设置适当的 Content-type 标头,并让 jQuery 从中动态确定数据类型
  • 谢谢你,迈克。你能解释一下“...不会改变状态码”吗?我的意思是:如果在 To 时间设置了状态代码(比如说 200)并且我在 T1 时间运行 ajax 并且 php 引擎抛出错误,那么状态仍然是 200?我现在会测试你的答案。
  • 我测试了您的解决方案并且它有效。但我忘了提,我需要一个全球解决方案。例如。例如,一个保持 ini_set 设置不变并将标头更改为 500 的方法,但每次我认为在某种情况下应该抛出错误时,我不必使用它。你觉得有可能吗?
  • 再次感谢迈克,我很感激。您能否在回答中传递您的最后一条评论?
  • @dakis 当然。已编辑。
猜你喜欢
  • 2012-08-17
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2016-08-17
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2022-01-17
相关资源
最近更新 更多