gpt4 book ai didi

html - 在 Go 中使用 HTML/TEMPLATE 包时如何设置不同的内容类型

转载 作者:IT王子 更新时间:2023-10-29 01:27:08 25 4
gpt4 key购买 nike

当尝试将值传递到 .html 代码时,我使用的是 html/template 包。

但是,我似乎无法设置在我的 .html 文件中引用的 .css 内容类型。它以纯文本形式提供给浏览器,因此格式会被忽略。

在静态 .html 文件中,我可以使用内置的 http.Fileserver 来处理内容类型,但模板不起作用。我不能传入变量。它只是显示为 {{.}}

有没有办法将内置文件服务器 http.Fileservercontent-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>

最佳答案

Template.Execute()将通过调用传递的 io.WriterWrite() 方法来“传递”内容在你的情况下是 http.ResponseWriter .

如果您没有在第一次调用 ResponseWriter.Write() 之前设置内容类型(在您的示例中没有设置),则 net/http包将尝试检测内容类型(基于写入的前 512 个字节),并自动为您设置它(以及 WriteHeader(http.StatusOK) 如果 ResponseWriter.WriteHeader() 还没有被调用)。

这在 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/等。文档和内容类型将被自动且正确地推断出来。

另请注意,如果它在某些“极端”情况下不起作用,您始终可以通过在调用 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


如果您提供的模板引用了其他模板,它们将不会被神奇地加载和执行。在这种情况下,您应该有一个包含所有模板的“预加载”模板。 template.ParseFiles()template.ParseGlob()是一次加载多个模板文件的好“工具”。

因此,如果您的 index.html 引用了 style.css,那么您也必须注意服务 style.css。如果它不是模板(例如静态文件),您可以使用此处提供的多个选项来提供它:Include js file in Go template

如果它也是一个模板,那么您还必须通过调用 Template.ExecuteTemplate() 加载它并提供它。 .

一个示例解决方案是使用 template.ParseFiles() 加载两者,并使用路径“指定”您想要提供的模板(从客户端/浏览器端)。

例如请求路径 /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 - 在 Go 中使用 HTML/TEMPLATE 包时如何设置不同的内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39711287/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com