来自第三方库的Golang解析模板
Golang parsing template from third party lib
我正在编写一个从其模板包中解析模板的库。当我在示例应用程序中使用它时,它从它自己的目录中读取模板,但库中的代码失败了。
这是库 - https://github.com/bangarharshit/bigpipe-golang and I am facing issues with this line - https://github.com/bangarharshit/bigpipe-golang/blob/master/Application.go#L66
正在从 lib 复制代码 -
templates, err := template.ParseFiles("templates/bigpipe.html")
if err != nil {
return
}
另一种解决方案是将文件中的内容复制到变量中并使用 template.parse 而不是 template.parsefiles
我正在编写一个从其模板包中解析模板的库。当我在示例应用程序中使用它时,它从它自己的目录中读取模板,但库中的代码失败了。
这是库 - https://github.com/bangarharshit/bigpipe-golang and I am facing issues with this line - https://github.com/bangarharshit/bigpipe-golang/blob/master/Application.go#L66
正在从 lib 复制代码 -
templates, err := template.ParseFiles("templates/bigpipe.html")
if err != nil {
return
}
另一种解决方案是将文件中的内容复制到变量中并使用 template.parse 而不是 template.parsefiles