如何使用go模板用FuncMap解析html文件

时间:2015-12-03 05:50:33

标签: parsing templates dictionary go func

我使用以下代码来解析html模板。效果很好。

func test(w http.ResponseWriter, req *http.Request) {

    data := struct {A int B int }{A: 2, B: 3}

    t := template.New("test.html").Funcs(template.FuncMap{"add": add})

    t, err := t.ParseFiles("test.html")

    if err!=nil{
        log.Println(err)
    }
    t.Execute(w, data)
}

func add(a, b int) int {
    return a + b
}

和html模板test.html。

<html>
<head>
    <title></title>
</head>
<body>
    <input type="text" value="{{add .A .B}}">
</body>
</html>

但是当我将html文件移动到另一个目录时。然后使用以下代码。输出始终为空。

t := template.New("./templates/test.html").Funcs(template.FuncMap{"add": add})

t, err := t.ParseFiles("./templates/test.html")

谁能告诉我什么是错的?或者html / template包不能这样使用?

1 个答案:

答案 0 :(得分:2)

您的程序(html/template包)无法找到test.html文件,这有什么问题。指定相对路径(您的相对路径)时,它们将被解析为当前工作目录。

您必须确保html文件/模板位于正确的位置。例如,如果您使用go run ...启动应用程序,相对路径将解析为您所在的文件夹,即工作目录。

此相对路径:"./templates/test.html"将尝试解析当前文件夹的templates子文件夹中的文件。确保它在那里。

另一种选择是使用绝对路径。

还有另一个重要的注意事项:不要在处理函数中解析模板!它运行以服务每个传入的请求。而是将它们解析在包init()函数中一次。

更多细节:

It takes too much time when using "template" package to generate a dynamic web page to client in golang