我的问题很简单,但我不知道:直到现在我一直在使用 java 和 eclipse 或 C#,所以这是一个“新世界”:)
如何调试我的 laravel 代码?
我正在使用 laravel 和 vuejs。我用 laragon 启动我的服务器,并使用 VScode。我尝试从 VScode 启动它(在 laragon 中添加了 xdebug dll),但它没有给我更多信息,而且我无法使用断点调试任何东西:
{
"name": "Launch localhost",
"type": "chrome",
"request": "launch",
"url": "http://127.0.0.1/",
"webRoot": "C://laragon//www//projet"
},
{
"name": "Launch index.php",
"type": "chrome",
"request": "launch",
"file": "C://laragon//www//projet//index.php"
},
当我收到 sql 错误时,我得到的只是
app.js:651 Uncaught (in promise) Error: Request failed with status code 500
at createError (app.js:651)
at settle (app.js:814)
at XMLHttpRequest.handleLoad (app.js:184)
如何查看我的 SQL 请求并获得“真正的错误”?我怎样才能正确调试?
提前非常感谢。