加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Linux > 正文

linux – 从Go提供服务时,静态文件不会更新

发布时间:2020-12-14 02:11:40 所属栏目:Linux 来源:网络整理
导读:我开始学习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
我开始学习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中甚至尝试另一个浏览器和卷曲,但仍然看到旧的静态文件,而在文件系统中只有新版本.所以它不是关于浏览器.实际上,当我在浏览器中看到新版本的静态文件时,有一件事就是将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

结论:我在另一个虚拟机上运行它,一切正常,所以有一些关于虚拟机的东西,但现在我不知道是什么问题.

解决方法

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 worldn2"

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读