Silverstripe:如何调试 GraphQL 错误?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,你不能打开任何调试或类似的东西,但你可以使用下面的技巧。
要找出错误发生的位置,请在错误发生的位置之前添加回溯调用(如下所示)。
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.
我建议使用 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.