- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我从异地获得了 Go 1.4/Win32。我看到文件夹“c:\go\bin”。其中没有 gotype
命令。我需要 gotype
-- gotype 在哪里,如何安装?
最佳答案
2015 年 4 月更新:Go 1.5 应该引入“go doc
”:参见
cmd/go
,cmd/doc
: 添加“go doc
”doc.go
重命名为 alldocs.go
为“go doc
”做准备Add the new
go doc
command to the go command, installed in the tool directory.usage:
go doc [-u] [package|[package.]symbol[.method]]
原始答案(2015 年 1 月)
你需要:
go get -u golang.org/x/tools/cmd/gotype
这将安装来自 golang.org/x/tools/cmd/gotype
的额外工具:
The
gotype
command does syntactic and semantic analysis of Go files and packages like the front-end of a Go compiler.
Errors are reported if the analysis fails; otherwisegotype
is quiet (unless-v
is set).
注意:这不是您可能考虑安装的唯一额外工具,如 this article 中所示。 :
go get -u golang.org/x/tools/cmd/godoc
go get -u golang.org/x/tools/cmd/vet
go get -u golang.org/x/tools/cmd/goimports
go get -u golang.org/x/tools/cmd/gorename
go get -u golang.org/x/tools/cmd/oracle
go get -u golang.org/x/tools/cmd/gotype
go get -u github.com/golang/lint/golint
注意:Go 1.5 将使该操作更快。
参见 commit dc2d64b通过 Brad Fitzpatrick (bradfitz
) :
cmd/go
: cache results of HTTP requests done during meta tag discoveryPreviously, running
$ go get -u -v golang.org/x/tools/cmd/godoc
would results in dozens of HTTP requests for:
https://golang.org/x/tools?go-get=1
once per package under
x/tools
.Now it caches the results.
We still end up doing one HTTP request for all the packages underx/tools
, but this reduces the total number of HTTP requests in ~half.
关于Go 没有安装 gotype 命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27768974/
我对 Go 有点陌生,我一直在尝试使用 SublimeLinter-contrib-gotype包来整理我的文件。它在大多数情况下运行良好,但出于某种原因,如果我尝试从 GitHub 导入 Go 包,
我从异地获得了 Go 1.4/Win32。我看到文件夹“c:\go\bin”。其中没有 gotype 命令。我需要 gotype -- gotype 在哪里,如何安装? 最佳答案 2015 年 4 月
在 Sublime 3 的 Debian 测试中启用/检测 GoSublime + Linters 时遇到问题。我已经在 OSX 和 Windows 机器上完成了六次,没有失败。 ST 控制台显示:
我是一名优秀的程序员,十分优秀!