Silverstripe:如何调试 GraphQL 错误?

发布于 2025-01-14 06:12:22 字数 71 浏览 0 评论 0原文

在 Silverstripe 中,GraphQL 在浏览器控制台中提供错误,但没有回溯,这使得调试变得棘手。有没有办法获得回溯?

In Silverstripe, GraphQL provides an error in the browser console, but there is no backtrace, making debugging tricky. Is there a way to get a backtrace?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

|煩躁 2025-01-21 06:12:22

不,你不能打开任何调试或类似的东西,但你可以使用下面的技巧。

要找出错误发生的位置,请在错误发生的位置之前添加回溯调用(如下所示)。

use SilverStripe\Dev\Backtrace;

class Foo 
{
    function Bar()
    {
        // conditional to only catch error
        Backtrace::backtrace();

        // actual error is below
    }
}

No, you can't turn any debugging on or something like that, but you can use the trick below.

To find out where the error occurs you add the backtrace call (as below), just before the location where the error occurs.

use SilverStripe\Dev\Backtrace;

class Foo 
{
    function Bar()
    {
        // conditional to only catch error
        Backtrace::backtrace();

        // actual error is below
    }
}
无语# 2025-01-21 06:12:22

我建议使用 XDebug,在您知道会执行或您怀疑可能与问题相关的代码上设置几个断点,并在调试器运行的情况下逐步执行代码。

I would recommend using XDebug, setting a couple of breakpoints on code that you know gets executed or which you suspect may be related to the problem, and stepping through the code with the debugger running.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文