我开始学习Go,并且遇到静态文件句柄问题。 有这个:
func main() {
fs := http.FileServer(http.Dir("public"))
http.Handle("/", fs)
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal("ListenAndServe: ", err)
}
}
文件夹结构:
main.go
public
- index.html
当我运行go run main.go
并在其之后,更改index.html
中的内容,然后再次运行go run main.go
时,浏览器中的视图不会更改。所以我google了一下,并认为它们是二进制文件,编译,因为main.go
没有改变,go不会重新编译它。所以我运行go run -a main.go
强制重新编译,但它没有帮助。
我清除Chrome中的历史记录和缓存,甚至尝试使用其他浏览器和curl
,但仍然看到旧的静态文件,而在文件系统中只有新版本。所以它不是关于浏览器。实际上,当我在浏览器中看到新版本的静态文件时,有一件事就是将public
重命名为public2
(例如)并在main.go
中进行相同的更改。
这不是Go问题,因为此示例在其他用户中正常工作。所以它与我的系统有关。我在Vagrant的默认Ubuntu 16.04上运行该代码。
vagrantfile:
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.network "forwarded_port", guest: 8080, host: 8080
config.vm.network "forwarded_port", guest: 5432, host: 5432
end
请求标题:
2017/11/19 18:25:45 request.RequestURI: /
2017/11/19 18:25:45 request.RemoteAddr: 10.0.2.2:50584
2017/11/19 18:25:45 request.TLS: <nil>
2017/11/19 18:25:45 Request Headers:
2017/11/19 18:25:45 Accept : [text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8]
2017/11/19 18:25:45 Accept-Encoding : [gzip, deflate, br]
2017/11/19 18:25:45 Accept-Language : [en-US,en;q=0.9,ru;q=0.8]
2017/11/19 18:25:45 Cache-Control : [max-age=0]
2017/11/19 18:25:45 Connection : [keep-alive]
2017/11/19 18:25:45 If-Modified-Since : [Sun, 19 Nov 2017 16:24:53 GMT]
2017/11/19 18:25:45 Upgrade-Insecure-Requests : [1]
2017/11/19 18:25:45 User-Agent : [Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36]
响应标题:
HTTP/1.1 200 OK
Accept-Ranges: bytes
Content-Length: 2010
Content-Type: text/html; charset=utf-8
Last-Modified: Sun, 19 Nov 2017 16:24:53 GMT
Date: Sun, 19 Nov 2017 18:25:27 GMT
结论:我在另一个vm上运行它,一切正常,所以有一些关于vm,但现在我不知道是什么问题。
答案 0 :(得分:1)
go run本质上是builds a binary, copies it to a tmp folder and then executes it(不仅如此,但足以满足我们的目的)。
我通过复制您提供的main.go然后执行以下操作来测试您的示例:
go run main.go
# in a new tab
curl localhost:8080
# ==> "Hello world"
echo "2" >> public/index.html
curl localhost:8080
# ==> "Hello world\n2"