我正在学习 Go,但在使用我的服务器提供静态文件时遇到了问题。我总是得到 404。
请求是为了http://localhost:3001/static/breakfast.jpg
路由器+文件服务器
mux := chi.NewRouter()
mux.Get("/", handlers.Repo.Home)
fileServer := http.FileServer(http.Dir("./static/"))
mux.Handle("/static/*", http.StripPrefix("/static", fileServer))
静态文件路径
root/static/
我的模板主页.tmpl
{{template "base" .}}
{{define "content"}}
<div class="container">
<div class="row">
<div class="col">
<h1>Hi from home page</h1>
<img src="/static/breakfast.jpg" width="1920" height="1080" alt="house" />
</div>
</div>
</div>
{{ end }}
我究竟做错了什么?
元芳怎么了
MM们
随时随地看视频慕课网APP
相关分类