2

我似乎无法找到问题的答案,godoc 服务器是否支持我自己的项目的实时重新加载更改?

根据这篇文章,它应该受到支持,但是每当我更改我的代码(更新文档)时,在重新启动 Web 服务器之前不会出现任何更改

每次启动服务器时,我的文档都会更新/出现:

godoc -http=:6060 &

我不想每次更改都重新启动服务器,这是预期的行为,我可以做些什么来以最少的努力更新我的更改?

我的版本:

$ go version
go version go1.8 darwin/amd64

在隐身模式下使用浏览器:

Chrome Version 57.0.2987.133 (64-bit)
4

1 回答 1

2

Godoc for a directory ("Directory /src/github.com/someuser" at the top) does not automatically update.

Godoc for a package ("Package yourthing" at the top) will automatically update, but you must reload the page to see the change.

于 2017-08-30T17:31:48.520 回答