1 回答
TA贡献1820条经验 获得超2个赞
您的第一个问题是:r.Handle("/static", fs). 句柄func (mx *Mux) Handle(pattern string, handler http.Handler)被定义为文档描述pattern为:
每个路由方法都接受一个 URL 模式和处理程序链。URL 模式支持命名参数(即 /users/{userID})和通配符(即 /admin/ )。URL 参数可以在运行时通过调用 chi.URLParam(r, "userID") 获取命名参数和 chi.URLParam(r, " ") 获取通配符参数。
所以r.Handle("/static", fs)将匹配“/static”并且只匹配“/static”。要匹配低于此的路径,您需要使用r.Handle("/static/*", fs).
第二个问题是您正在请求http://localhost:port/static/afile.png,这/mnt/Files/Projects/backend/static意味着系统尝试加载的文件是/mnt/Files/Projects/backend/static/static/afile.png. 解决此问题的一种简单(但不理想)的方法是从项目根目录 ( fs := http.FileServer(http.Dir(filepath.Join(wd, "../")))) 提供服务。更好的选择是使用StripPrefix; 要么带有硬编码前缀:
fs := http.FileServer(http.Dir(filepath.Join(wd, "../", "static")))
r.Handle("/static/*", http.StripPrefix("/static/",fs))
或者Chi 示例代码的方法(请注意,该演示还为请求路径而不指定特定文件时添加了重定向):
fs := http.FileServer(http.Dir(filepath.Join(wd, "../", "static")))
r.Get("/static/*", func(w http.ResponseWriter, r *http.Request) {
rctx := chi.RouteContext(r.Context())
pathPrefix := strings.TrimSuffix(rctx.RoutePattern(), "/*")
fs := http.StripPrefix(pathPrefix, fs)
fs.ServeHTTP(w, r)
})
注意:os.Getwd()在这里使用没有任何好处;在任何情况下,您的应用程序都将访问与此路径相关的文件,所以filepath.Join("../", "static"))很好。如果你想让它相对于存储可执行文件的路径(而不是工作目录),那么你想要这样的东西:
ex, err := os.Executable()
if err != nil {
panic(err)
}
exPath := filepath.Dir(ex)
fs := http.FileServer(http.Dir(filepath.Join(exPath, "../static")))
- 1 回答
- 0 关注
- 133 浏览
添加回答
举报