Golang模板将html解释为纯文本

时间:2019-06-21 18:27:01

标签: html go

我有一个Golang模板,将我的html解释为纯文本。

我在传递给w.Header().Set("Content-Type", "text/html; charset=utf-8")的函数中加入了行http.HandleFunc(),但是我的html被解释为纯文本。

package main

import (
    "html/template"
    "io"
    "net/http"
)

func main() {
    http.HandleFunc("/dog", dog)
    http.Handle("/resources/", http.StripPrefix("/resources", http.FileServer(http.Dir("./assets"))))
    http.ListenAndServe(":8080", nil)
}

var tpl *template.Template

func init() {
    tpl = template.Must(template.ParseFiles("index.gohtml"))
}

func dog(w http.ResponseWriter, req *http.Request) {
    w.Header().Set("Content-Type", "text/html; charset=utf-8")
    data := []string{`<h1>This is from dog</h1>`, `<img src="/assets/img/dog.jpg">`}
    tpl.ExecuteTemplate(w, "index.gohtml", data)
}

这是我的index.gohtml模板:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    {{range .}}
        {{.}}
    {{end}}
</body>
</html>

1 个答案:

答案 0 :(得分:1)

正如评论中指出的那样,答案是将[]string{}替换为[]template.HTML{},而不是将其作为数据传递到模板中。