Write the Code. Change the World.

11月 20

开发的时候,需要经常查阅官方文档。使用 godoc 工具,就可以在本地查看使用了。

操作一波

 godoc -http=:6060

如果提示 godoc 不存在。那是因为在 go 1.13 版本后,默认移除了,需要手动安装。

go get golang.org/x/tools/cmd/godoc

安装好了后,再运行上边命令就可以了。

标准库以及加载过的第三方库的文档: http://localhost:6060/pkg

Go 的主要文档,如发布日志、Effective Go 等: http://localhost:6060/doc

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注