我正在运行这个命令“去运行 webapp/main.go”。原因是应用程序引擎将从根目录调用我的应用程序,因此我将路径更改为从根目录调用文件。我也不介意你是否有 Go 最佳实践技巧。
└── webapp
├── app.yaml
├── assets
│ ├── css
│ │ └── index.css
│ └── img
├── main.go
├── main_test.go
└── templates
└── index.html
对如此微不足道的事情怎么会出错感到困惑。localhost:8080/css/index.css 工作正常。我还有另一个处理函数来服务 localhost:8080/static/css/index.css,但我收到 404 错误。当我使用命令“go run main.go”并从代码中删除“webapp”时,一切都很顺利。尽管如此,它如何与 / 而不是 /static/ 一起工作。从这个https://stackoverflow.com/a/47997908/6828897答案中可以看出,它应该将 ./webapp/assets/static 作为目录。我也尝试过 http.StripPrefix 但也没有运气。
package main
import (
"flag"
"log"
"net/http"
"os"
"path/filepath"
"sync"
"text/template"
)
type templateHandler struct {
once sync.Once
filename string
templ *template.Template
}
// ServeHTTP handles the HTTP request.
func (t *templateHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
t.once.Do(func() {
t.templ = template.Must(template.ParseFiles(filepath.Join("webapp", "templates", t.filename)))
})
if err := t.templ.Execute(w, r); err != nil {
log.Printf("Error executing template: %v", err)
http.Error(w, "Internal server error", http.StatusInternalServerError)
}
}
func main() {
dir, err := os.Getwd()
if err != nil {
log.Printf(err.Error())
}
log.Printf("dir: %s", dir)
// command flags
var addr = flag.String("addr", ":8080", "The addr of the application.")
flag.Parse()
// env variables
envPort := os.Getenv("PORT")
if envPort != "" {
envPort = ":" + envPort
addr = &envPort
}
fs := http.FileServer(http.Dir("./webapp/assets"))
http.Handle("/static/", fs)
log.Printf("Listening on port %s", *addr)
// http.Handle("/", &templateHandler{filename: "index.html"})
if err := http.ListenAndServe(*addr, fs); err != nil {
log.Fatal(err)
}
}