为了账号安全,请及时绑定邮箱和手机立即绑定

在 Go 中动态调用 template.ParseFiles() 而不是传入 x 个字符串

在 Go 中动态调用 template.ParseFiles() 而不是传入 x 个字符串

Go
不负相思意 2021-11-08 09:58:19
我想在 Go 中加载一个 HTML 模板文件夹,现在我只能将每个文件路径作为参数中的字符串传递。例子:templates = template.Must(template.ParseFiles("../web/html_templates/edit.html","../web/html_mplates/view.html"))工作正常。这个和类似的解决方案将不起作用:templates = template.Must(template.ParseFiles("../web/html_templates/*"))我想在配置文件中指定我的模板,但我目前不能。解决这个问题的最佳方法是什么?
查看完整描述

2 回答

?
繁星点点滴滴

TA贡献1803条经验 获得超3个赞

使用ParseGlob在一个 API 调用中解析 HTML 模板文件夹。

templates = template.Must(template.ParseGlob("../web/html_templates/*.html"))

有关glob 语法,请参阅匹配函数文档。


查看完整回答
反对 回复 2021-11-08
?
莫回无

TA贡献1865条经验 获得超7个赞

您可以使用template.ParseFiles是一个可变参数函数这一事实:


var templatesFiles []string

// [...]

// Here fill the slice from your config file or any other source

// [...]

templates = template.Must(template.ParseFiles(templatesFiles...))


查看完整回答
反对 回复 2021-11-08
  • 2 回答
  • 0 关注
  • 175 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信