2016-12-28 79 views
-1

我正在寫一個解析其模板包中的模板的庫。當我在示例應用程序中使用它時,它從自己的目錄中讀取模板,但libary中的代碼失敗。來自第三方庫的Golang解析模板

這裏是libary - https://github.com/bangarharshit/bigpipe-golang和我面臨的問題與這條線 - 從LIB https://github.com/bangarharshit/bigpipe-golang/blob/master/Application.go#L66

複製代碼 -

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

回答

0

一種替代soultion是從文件中複製內容到一個變量和使用template.parse而不是template.parsefiles

相關問題