go 对静态文件的服务写法:
http.Handle("/static/",http.StripPrefix("/static/",http.FileServer(http.Dir("static"))))
自己玩的时候遇到的问题:
自定义Handler实现serveHTTP() 方法来动态match路由 路由定义为:map[string]func(http.ResponseWriter,*http.Request) 路径match路由函数 静态文件的请求也会走自己实现的serveHTTP() 方法 会在map中匹配不到路由
导致静态文件(模板中js和css等)导入失败
后来自己看了看源码 找到一个low b的解决办法 在serveHTTP() 判断是否请求静态资源(规则自定义)调用http.StripPrefix("/static/",http.FileServer(http.Dir("static")))返回的handler的serveHTTP方法实现静态文件服务
ServeHTTP:
func(*myHandler)ServeHTTP(whttp.ResponseWriter,r*http.Request){ fmt.Println("outer:",r.URL.Path) ifh,ok:=mux[r.URL.String()];ok{ h(w,r) }elseifstrings.HasPrefix(r.URL.String(),"/static/"){ had:=http.StripPrefix("/static/",http.FileServer(http.Dir("static"))) had.ServeHTTP(w,r) }else{ http.Error(w,"404notfound",404) } }原文链接:https://www.f2er.com/go/190310.html