我试图通过 VS Code 传递参数来深入研究,但它不起作用。
这是如何通过 delve 将参数传递给 go 程序:
dlv debug github.com/docker/swarm -- create
我在我的中尝试了许多不同的解决方案launch.json
:
"args": [
"--",
"create"
]
"args": [
"--create"
]
"args": [
"create"
]
我试图通过 VS Code 传递参数来深入研究,但它不起作用。
这是如何通过 delve 将参数传递给 go 程序:
dlv debug github.com/docker/swarm -- create
我在我的中尝试了许多不同的解决方案launch.json
:
"args": [
"--",
"create"
]
"args": [
"--create"
]
"args": [
"create"
]