在 Go 中使用 HTML/TEMPLATE 包时如何设置不同的内容类型
How to set different content types when using HTML/TEMPLATE package in Go
当试图将值传递到 .html
代码时,我使用的是 html/template
包。
但是,我似乎无法设置 .html
文件中引用的 .css
内容类型。它以纯文本形式提供给浏览器,因此格式会被忽略。
在静态 .html
文件中,我可以使用内置的 http.Fileserver
来处理内容类型,但模板不起作用。我不能传入变量。它只是显示为 {{.}}
有没有办法将内置文件服务器 http.Fileserver
的 content-type
便利性和 http.HandleFunc
的模板能力结合起来?
这是我的代码,没有使用 http.Fileserver
。请注意,我的 Go
文件位于起始目录中,而 index.html
和 .css
文件位于子目录 /hello/
:
中
package main
import (
"html/template"
"io/ioutil"
"log"
"net/http"
)
var Message string = "test page"
func servePipe(w http.ResponseWriter, req *http.Request) {
dat, err := ioutil.ReadFile("hello/index.html")
if err != nil {
log.Fatal("couldn't read file:", err)
}
templ, err := template.New("Test").Parse(string(dat))
if err != nil {
log.Fatal("couldn't parse page:", err)
}
templ.Execute(w, Message)
}
func main() {
http.HandleFunc("/hello/", servePipe)
http.ListenAndServe(":8080", nil)
}
这是我的 .html
文件。 html 页面的服务没有任何问题。这是未提供的单独 .css
文件(在 .html
文件中链接),因此不会发生格式化。
<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<p>{{.}}</p>
</body>
</html>
模板化,即生成 HTML,即 HTTP 响应的 body,与通过 HTTP header 传输的内容类型完全分离。只需将 Content-Type 设置为适当的 ,然后 通过 tmpl.Execute(w, ...)
生成 body :
w.Header().Set("Content-Type", "text/css")
Template.Execute()
will "deliver" the content by calling the Write()
method of the passed io.Writer
which in your case is the http.ResponseWriter
.
如果您在第一次调用 ResponseWriter.Write()
之前没有设置内容类型(在您的示例中没有设置),那么 net/http
程序包将尝试检测内容类型(基于写入的前 512 个字节),并将自动为您设置它(如果尚未调用 ResponseWriter.WriteHeader()
,则连同 WriteHeader(http.StatusOK)
)。
这记录在 http.ResponseWriter.Write()
:
// Write writes the data to the connection as part of an HTTP reply.
//
// If WriteHeader has not yet been called, Write calls
// WriteHeader(http.StatusOK) before writing the data. If the Header
// does not contain a Content-Type line, Write adds a Content-Type set
// to the result of passing the initial 512 bytes of written data to
// DetectContentType.
//
// ...
Write([]byte) (int, error)
因此,如果您的 index.html
看起来像这样:
<html>
<body>
This is the body!
</body>
</html>
然后这将被正确检测为 HTML 文档,因此将自动设置 text/html
内容类型。如果您没有遇到这种情况,则意味着您的 index.html
未被识别为 HTML 文档。因此,只需确保您的模板文件有效 HTML / CSS / 等。文档和内容类型将被自动且正确地推断出来。
另请注意,如果它在某些 "extreme" 情况下不起作用,您始终可以 "override" 通过在调用 Template.Execute()
之前手动设置它,如下所示:
w.Header().Set("Content-Type", "text/html")
templ.Execute(w, Message)
旁注:不要在处理程序中读取和解析模板,有关详细信息,请参阅相关问题:It takes too much time when using "template" package to generate a dynamic web page to client in golang
如果您提供的模板引用了其他模板,它们将不会被神奇地加载和执行。在这种情况下,您应该有一个包含所有模板的 "pre-loaded" 模板。 template.ParseFiles()
and template.ParseGlob()
很好 [=75=] 一次加载多个模板文件。
因此,如果您的 index.html
引用了 style.css
,那么您也必须注意服务 style.css
。如果它不是模板(例如静态文件),您可以使用此处提供的多个选项来提供它:
如果它也是一个模板,那么您还必须通过调用 Template.ExecuteTemplate()
.
加载它并提供它
一个示例解决方案是使用 template.ParseFiles()
加载两者,并使用 "designate" 您想要提供的模板的路径(从客户端/浏览器端)。
例如请求路径 /hello/index.html
可以为 "index.html"
模板提供服务,请求路径 /hello/style.css
(这将由浏览器在接收和处理 index.html
后自动完成) 可以服务于 "style.css"
模板。它可能看起来像这样(为简洁起见省略了错误检查):
parts := strings.Split(req.URL.Path, "/") // Parts of the path
templName := parts[len(parts)-1] // The last part
templ.ExecuteTemplate(w, templName, someDataForTemplate)
当试图将值传递到 .html
代码时,我使用的是 html/template
包。
但是,我似乎无法设置 .html
文件中引用的 .css
内容类型。它以纯文本形式提供给浏览器,因此格式会被忽略。
在静态 .html
文件中,我可以使用内置的 http.Fileserver
来处理内容类型,但模板不起作用。我不能传入变量。它只是显示为 {{.}}
有没有办法将内置文件服务器 http.Fileserver
的 content-type
便利性和 http.HandleFunc
的模板能力结合起来?
这是我的代码,没有使用 http.Fileserver
。请注意,我的 Go
文件位于起始目录中,而 index.html
和 .css
文件位于子目录 /hello/
:
package main
import (
"html/template"
"io/ioutil"
"log"
"net/http"
)
var Message string = "test page"
func servePipe(w http.ResponseWriter, req *http.Request) {
dat, err := ioutil.ReadFile("hello/index.html")
if err != nil {
log.Fatal("couldn't read file:", err)
}
templ, err := template.New("Test").Parse(string(dat))
if err != nil {
log.Fatal("couldn't parse page:", err)
}
templ.Execute(w, Message)
}
func main() {
http.HandleFunc("/hello/", servePipe)
http.ListenAndServe(":8080", nil)
}
这是我的 .html
文件。 html 页面的服务没有任何问题。这是未提供的单独 .css
文件(在 .html
文件中链接),因此不会发生格式化。
<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<p>{{.}}</p>
</body>
</html>
模板化,即生成 HTML,即 HTTP 响应的 body,与通过 HTTP header 传输的内容类型完全分离。只需将 Content-Type 设置为适当的 ,然后 通过 tmpl.Execute(w, ...)
生成 body :
w.Header().Set("Content-Type", "text/css")
Template.Execute()
will "deliver" the content by calling the Write()
method of the passed io.Writer
which in your case is the http.ResponseWriter
.
如果您在第一次调用 ResponseWriter.Write()
之前没有设置内容类型(在您的示例中没有设置),那么 net/http
程序包将尝试检测内容类型(基于写入的前 512 个字节),并将自动为您设置它(如果尚未调用 ResponseWriter.WriteHeader()
,则连同 WriteHeader(http.StatusOK)
)。
这记录在 http.ResponseWriter.Write()
:
// Write writes the data to the connection as part of an HTTP reply.
//
// If WriteHeader has not yet been called, Write calls
// WriteHeader(http.StatusOK) before writing the data. If the Header
// does not contain a Content-Type line, Write adds a Content-Type set
// to the result of passing the initial 512 bytes of written data to
// DetectContentType.
//
// ...
Write([]byte) (int, error)
因此,如果您的 index.html
看起来像这样:
<html>
<body>
This is the body!
</body>
</html>
然后这将被正确检测为 HTML 文档,因此将自动设置 text/html
内容类型。如果您没有遇到这种情况,则意味着您的 index.html
未被识别为 HTML 文档。因此,只需确保您的模板文件有效 HTML / CSS / 等。文档和内容类型将被自动且正确地推断出来。
另请注意,如果它在某些 "extreme" 情况下不起作用,您始终可以 "override" 通过在调用 Template.Execute()
之前手动设置它,如下所示:
w.Header().Set("Content-Type", "text/html")
templ.Execute(w, Message)
旁注:不要在处理程序中读取和解析模板,有关详细信息,请参阅相关问题:It takes too much time when using "template" package to generate a dynamic web page to client in golang
如果您提供的模板引用了其他模板,它们将不会被神奇地加载和执行。在这种情况下,您应该有一个包含所有模板的 "pre-loaded" 模板。 template.ParseFiles()
and template.ParseGlob()
很好 [=75=] 一次加载多个模板文件。
因此,如果您的 index.html
引用了 style.css
,那么您也必须注意服务 style.css
。如果它不是模板(例如静态文件),您可以使用此处提供的多个选项来提供它:
如果它也是一个模板,那么您还必须通过调用 Template.ExecuteTemplate()
.
一个示例解决方案是使用 template.ParseFiles()
加载两者,并使用 "designate" 您想要提供的模板的路径(从客户端/浏览器端)。
例如请求路径 /hello/index.html
可以为 "index.html"
模板提供服务,请求路径 /hello/style.css
(这将由浏览器在接收和处理 index.html
后自动完成) 可以服务于 "style.css"
模板。它可能看起来像这样(为简洁起见省略了错误检查):
parts := strings.Split(req.URL.Path, "/") // Parts of the path
templName := parts[len(parts)-1] // The last part
templ.ExecuteTemplate(w, templName, someDataForTemplate)