Go语言之自定义模板,引用多个模板html文件嵌套使用

简介: Go语言之自定义模板,引用多个模板html文件嵌套使用

制作流程:

1、同样是先定义一个处理接口/tmpl,当访问到http://ip:9090/tmpl时,会处理ti函数

1675180779051.jpg

2、定义t1函数,这个函数解析了两个模板1.tmpl 2.tmpl,这里需要注意的是第一个模板是父模板,其中包含了第二个模板,所以第一个模板必须先写

1675180797438.jpg

3、1.tmpl使用define函数生成了一个内部模板,而2.tmpl是与1.tmpl同一目录级别的文件。这里只是引申一下define知识点

目录结构:

main.go
1.tmpl
2.tmpl
p6.tmpl

main.go内容

package main
import (
  "fmt"
  "html/template"
  "net/http"
)
func f1(w http.ResponseWriter, r *http.Request) {
  //嵌套一个函数,要么赋值一个,要么第二个值必须是error
  k := func(name string) (string, error) {
    return name + "Gin框架", nil
  }
  //定义模板
  //在p6.tmpl编辑
  //解析模板
  t := template.New("p6.tmpl") //定义一个新的模板名称为p6.tmpl
  t.Funcs(template.FuncMap{    //固定函数格式
    "kua": k, //自定义“kua”必须与同级目录p6.tmpl文件引用的一致
  })
  _, err := t.ParseFiles("./p6.tmpl") //使用ctrl得知,这里需要两个返回值,所以赋值两个
  if err != nil {                     //错误处理
    fmt.Printf("parse template failed,err%v", err)
    return
  }
  name := "Go语言" //声明值
  //渲染模板
  t.Execute(w, name) //w代表写入,name对应同级目录p6.tmpl文件中的点.
}
func t1(w http.ResponseWriter, r *http.Request) {
  //定义模板
  //解析模板
  t, err := template.ParseFiles("./1.tmpl", "./2.tmpl")
  if err != nil {
    fmt.Printf("parse template failed,err%v", err)
    return
  }
  //渲染模板
  name := "GO语言嵌套模板使用"
  t.Execute(w, name)
}
func main() {
  http.HandleFunc("/", f1) //当请求到/根目录时,处理f1函数
  http.HandleFunc("/tmpl", t1)
  err := http.ListenAndServe(":9000", nil) //监听9000端口号
  if err != nil {                          //错误处理
    fmt.Println("HTTP server start failed, err:%v", err)
    return
  }
}

1.tmpl内容

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <title>自定义嵌套模板函数</title>
</head>
<body>
{{/*template 引用模板文件*/}}
{{template "2.tmpl"}}
{{/*hr代表中横线*/}}
<hr>
{{template "11.tmpl"}}
<hr>
{{/*.代表go代码中的name会传输进来*/}}
{{ . }}
</body>
</html>
{{/*define自定义内部模板*/}}
{{define "11.tmpl"}}
<ol>
    <li>吃饭</li>
    <li>睡觉</li>
    <li>打豆豆</li>
</ol>
{{end}}

2.tmpl内容

<ul>
    <li>吃饭</li>
    <li>睡觉</li>
    <li>打豆豆</li>
</ul>

p6.tmpl内容

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <title>自定义模板函数</title>
</head>
<body>
{{ kua . }}
</body>
</html>

运行程序:

go run main.go

浏览器访问:

http://ip:9000/tmpl

1675180886076.jpg

相关文章
|
21天前
|
Go 开发工具
百炼-千问模型通过openai接口构建assistant 等 go语言
由于阿里百炼平台通义千问大模型没有完善的go语言兼容openapi示例,并且官方答复assistant是不兼容openapi sdk的。 实际使用中发现是能够支持的,所以自己写了一个demo test示例,给大家做一个参考。
|
21天前
|
程序员 Go
go语言中结构体(Struct)
go语言中结构体(Struct)
94 71
|
20天前
|
存储 Go 索引
go语言中的数组(Array)
go语言中的数组(Array)
101 67
|
1天前
|
存储 监控 算法
员工上网行为监控中的Go语言算法:布隆过滤器的应用
在信息化高速发展的时代,企业上网行为监管至关重要。布隆过滤器作为一种高效、节省空间的概率性数据结构,适用于大规模URL查询与匹配,是实现精准上网行为管理的理想选择。本文探讨了布隆过滤器的原理及其优缺点,并展示了如何使用Go语言实现该算法,以提升企业网络管理效率和安全性。尽管存在误报等局限性,但合理配置下,布隆过滤器为企业提供了经济有效的解决方案。
26 8
员工上网行为监控中的Go语言算法:布隆过滤器的应用
|
13天前
|
Go 数据安全/隐私保护 UED
优化Go语言中的网络连接:设置代理超时参数
优化Go语言中的网络连接:设置代理超时参数
|
21天前
|
存储 Go 索引
go语言中数组和切片
go语言中数组和切片
34 7
|
23天前
|
Go 索引
go语言for遍历数组或切片
go语言for遍历数组或切片
93 62
|
21天前
|
存储 Go
go语言中映射
go语言中映射
33 11
|
23天前
|
Go
go语言for遍历映射(map)
go语言for遍历映射(map)
32 12
|
22天前
|
Go 索引
go语言使用索引遍历
go语言使用索引遍历
29 9