来自第三方lib的Golang解析模板

时间:2016-12-28 02:36:37

标签: go go-templates

我正在编写一个从其模板包中解析模板的库。当我在示例应用程序中使用它时,它从自己的目录中读取模板,但是库中的代码失败。

这是图书馆 - https://github.com/bangarharshit/bigpipe-golang,我遇到了这一行的问题 - https://github.com/bangarharshit/bigpipe-golang/blob/master/Application.go#L66

从lib复制代码 -

templates, err := template.ParseFiles("templates/bigpipe.html")
if err != nil {
    return
}

1 个答案:

答案 0 :(得分:0)

另一种选择是将文件中的内容复制到变量中并使用template.parse而不是template.parsefiles