来自按钮点击的 Goland run/re-run 命令

Goland run/re-run command from button click

我正在使用 go run 命令手动执行我的 go 文件。

运行 main.go web 目录中的文件:go run ./cmd/web

任何更改后:Ctrl + C 然后再次 go run ./cmd/web

有没有办法通过 Goland 中的按钮来完成?或者当 go 代码更改时自动?

您可以直接从 IDE 阅读 the help article 如何 运行 applications/tests,而无需键入 go run 命令。

作为快速参考:

In the left gutter of the editor, click the Run application icon the Run Application icon and select Run < method_name > in < file_name >.