如何在go模板内部分配go模板的变量?
短信预约 -IT技能 免费直播动态提醒
问题内容
我刚刚开始使用 golang 和模板系统来重新开发我的网络服务器。现在我只想为每个网站编写常量变量,但我什至不知道我在搜索什么。希望有人能帮忙。
我有这个 gohtml 文件作为每个 html 文件的“基础”
{{define "topdoc"}}
{{.title}}
{{end}}
{{define "botdoc"}}
{{end}}
我想更改标题,然后以相同的方式更改例如元数据描述和类似的内容。
{{template "topdoc" .}}
{{template "navbar"}}
home
{{template "botdoc"}}
导航栏在另一个文件中定义。
现在我想在这个文件中给出变量
{{template "topdoc" .title="home" .otherparam="checking..."}}
{{template "navbar"}}
home
{{template "botdoc"}}
也许有人可以帮助我解决这个非常琐碎的问题。
当我使用这个方法时
{{define "title"}}home{{end}}
{{template "topdoc"}}
{{template "navbar"}}
home
{{template "botdoc"}}
首先加载基本文件,它显示一个空白网站。
我像这样加载模板文件:
func main() {
r := gin.Default()
tmpl = make(map[string]*template.Template)
// Load templates files
templateFiles := []string{}
fmt.Println("Loading templates...")
// Walk through the "templates" folder and all its subdirectories
nerr := filepath.Walk("main/web/assets/templates", func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
// Check if the file is an HTML templates
if !info.IsDir() && strings.HasSuffix(info.Name(), ".gohtml") {
// Replace backslashes with forward slashes (for Windows compatibility)
templateName := strings.Replace(path, "\\", "/", -1)
// Parse the file and add it to the "tmpl" map
templateFiles = append(templateFiles, path)
//console log
fmt.Print(templateName + " ")
}
return nil
})
if nerr != nil {
panic(nerr)
}
fmt.Println("\n\nLoading sites...")
// Walk through the "public" folder and all its subdirectories
err := filepath.Walk("main/web/public", func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
// Check if the file is an HTML templates
if !info.IsDir() && strings.HasSuffix(info.Name(), ".gohtml") {
// Get the directory path (relative to the "public" folder)
relPath, err := filepath.Rel("main/web/public", filepath.Dir(path))
if err != nil {
return err
}
// Replace backslashes with forward slashes (for Windows compatibility)
templateName := strings.Replace(relPath, "\\", "/", -1)
// Parse the file and add it to the "tmpl" map
parsing := []string{}
parsing = append(parsing, templateFiles...)
parsing = append(parsing, path)
fmt.Println(parsing)
tmpl[templateName] = template.Must(template.ParseFiles(parsing...))
// If the path is empty, default to "index"
if templateName == "." {
templateName = ""
}
// Register the templates with the appropriate route
r.GET("/"+templateName, handler)
}
return nil
})
if err != nil {
panic(err)
}
r.Run()
}
正确答案
这通常是使用模板组合来实现的。在您的“topdoc”模板中,只需调用其他模板即可:
{{define "topdoc"}}
...
{{template "title"}}
...
{{end}}
并将“标题”模板定义为
{{define "title"}}default title{{end}}
然后,您可以通过在单独的文件中重新定义“标题”模板来覆盖它:
{{define "title"}}New title{{end}}
{{define "someTemplate}}
{{template "topdoc"}}
...
{{end}}
您必须编写这些不同的模板文件,以便首先加载“topdoc”(定义默认的“标题”),然后加载重新定义“标题”的模板。
以上就是如何在go模板内部分配go模板的变量?的详细内容,更多请关注编程网其它相关文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
如何在go模板内部分配go模板的变量?
下载Word文档到电脑,方便收藏和打印~
下载Word文档
猜你喜欢
如何在go模板内部分配go模板的变量?
问题内容我刚刚开始使用 golang 和模板系统来重新开发我的网络服务器。现在我只想为每个网站编写常量变量,但我什至不知道我在搜索什么。希望有人能帮忙。我有这个 gohtml 文件作为每个 html 文件的“基础”{{define "t
2024-02-05
将执行文本/模板模板的结果分配给变量
Golang小白一枚,正在不断学习积累知识,现将学习到的知识记录一下,也是将我的所得分享给大家!而今天这篇文章《将执行文本/模板模板的结果分配给变量》带大家来了解一下##content_title##,希望对大家的知识积累有所帮助,从而弥补
2024-04-04
无法使用 Go 的“文本/模板”库导入变量
偷偷努力,悄无声息地变强,然后惊艳所有人!哈哈,小伙伴们又来学习啦~今天我将给大家介绍《无法使用 Go 的“文本/模板”库导入变量》,这篇文章主要会讲到等等知识点,不知道大家对其都有多少了解,下面我们就一起来看一吧!当然,非常希望大家能多多
2024-04-04
如何在Go模板中传入“途中创建”的地图
问题内容我想在 Go 模板中制作类似 UI 组件 100% 可重用的东西,但我不知道是否可以做到。所以我正在尝试做下一步:{{define "components/menu-button"}}{{.content}}{{end}}这
2024-02-06
2023-08-31
DEDE模板中如何运行php脚本和变量在需要操作数据库字段时
在使用dede模板的时候,经常会需要直接对dede数据库的底层字段进行处理,如果dede中没有相应的函数的时候,往往就需要我们想办法来处理了。 举例:我想取出数据表addonimages中的某一条记录的typeid这个字段,然后在浏览器中输
2022-06-12