我是 Go 新手和 VSCode 新手。我以前也从未使用过 Delve。我正在尝试设置远程调试,但我似乎无法达到断点。
我的项目在 localhost:8080 上托管 REST 端点。为了让 delve 附加和侦听,launch.json 文件应该是什么样子,以便我可以在我的 REST 端点上放置断点?目前,这就是我所拥有的:
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "remote",
"remotePath": "",
"port": 8080,
"host": "127.0.0.1",
"program": "${workspaceRoot}",
"env": {},
"args": [],
"showLog": true
}
提前致谢!