我正在尝试调试该Go程序,该程序会读取文本并将其通过VSCode调试器输出到控制台。
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
reader := bufio.NewReader(os.Stdin)
fmt.Print("Enter text: ")
text, _ := reader.ReadString('\n')
fmt.Println(text)
}
它在终端上运行良好,但是当我使用VSCode对其进行调试时,即使我集中调试输出,我也无法键入任何内容。
在调试部分中有一个控制台,但是它是REPL评估程序,因此它也与终端控制台无关。
如何在VSCode中启用控制台,以便可以在程序中键入文本?
答案 0 :(得分:1)
此后跟Microsoft/vscode-go issue 219,并且仍然打开。
是-VS Code调试器控制台当前不支持将任何输入传递到标准输入。
仅供参考,您可以告诉代码调试器在启动配置中使用外部控制台:
"externalConsole": true
它有一个possible workaround,使用远程调试+ vscode任务,但这并不简单。
task.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "echo",
"type": "shell",
"command": "cd ${fileDirname} && dlv debug --headless --listen=:2345 --log --api-version=2",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
launch.json
:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Connect to server",
"type": "go",
"request": "launch",
"mode": "remote",
"remotePath": "${fileDirname}",
"port": 2345,
"host": "127.0.0.1",
"program": "${fileDirname}",
"env": {},
"args": []
}
]
}
使用快捷键(在Mac OS中为shift + cmd + B)运行任务,vscode将启动新的Shell并运行delve服务器。
按F5调试.go文件。对我来说很好。