func main() {
mux := http.NewServeMux()
staticHandler := http.FileServer(http.Dir("./templates"))
mux.Handle("/", http.StripPrefix("/", staticHandler))
log.Fatal(http.ListenAndServe(":8080", mux))
}
我想加载一个位于“模板”目录中的 html 文件。如果'模板'中有多个文件,我如何选择某个文件进行加载?
qq_笑_17
相关分类