• go template继承 引用 ParseGlob 匹配符加载template Execute和ExecuteTemplate 更改模板名字


    • {{template “js.html”}}引用js.html,不需要写路径。只要ParseGlob或者parsefiles能找到即可。可以读取不同文件夹下的同名文件,不报错,具体用哪个未知。
    • 读取的模板名默认为当前文件名,如template\test1\block.tmpl的模板名是block.tmpl,但如果在block.tmpl里用{{define “a/b/c.html”}}{{end}}包裹整个模板的内容,可以重命名模板名为a/b/c.html。代码见最下方
    • 模板a里写{{block “part0” .}}{{end}},b引用a,b里写{{define “part0”}}part0的html内容{{end}}填充a的part0
    • {{block “part0” .}}{{end}}貌似和 {{template “part0”}}效果一样,不知道有其他什么用
    • template.ParseFiles读取了1个文件,用Execute和ExecuteTemplate都行。读取了多个文件,用ExecuteTemplate。原因不明。建议全部用ExecuteTemplate。参考https://qiita.com/tetsuzawa/items/b2dc94d7bdc906268534
    • tmpl,err:=template.ParseGlob(“./template/※※/※”),匹配./template下所有文件夹(递归)的所有文件
    • tmpl,err:=template.ParseGlob(“./template/test※/※”),匹配./template下名字以test开头的文件夹(非递归)的所有文件
    • tmpl,err:=template.ParseGlob(“./template/※/※/※”),匹配./template下里两层以内所有文件夹(非递归)的所有文件
    • tmpl,err:=template.ParseGlob(“./template/※.tmpl”),匹配./template下所有.tmpl文件

    上面的代码※是匹配符*,※※表示任意层级的子文件夹,※表示单层或任意字符

    //template\test1\block.tmpl
    DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        {{template "js.html"}}
        <title>Documenttitle>
    head>
    <body>
        <div>part1div>
        {{template "part0"}}
        <div>part2div>
        {{block "part0" .}}{{end}}
        <div>part3div>
    body>
    html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    //template\test1\useblock.tmpl
    {{template "block.tmpl"}}
    
    {{define "part0"}}
        <h1>this is part0 h1>
    {{end}}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    //template\test2\js.html
    <script src="https://code.jquery.com/jquery-3.6.1.min.js" integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous">script>
    
    • 1
    • 2
    //a1.go
    package main
    
    import (
    	"html/template"
    	"log"
    	"net/http"
    	// "github.com/gin-gonic/gin"
    )
    
    func main() {
    	http.HandleFunc("/a1", a1)
    	err := http.ListenAndServe(":8080", nil)
    	if err != nil {
    		log.Println("HTTP server failed,err:", err)
    		return
    	}
    
    }
    
    func a1(w http.ResponseWriter, r *http.Request) {
    	tmpl,err:=template.ParseGlob("./template/**/*.*")
    	// tmpl,err:=template.ParseGlob("./template/test*/*")
    	// tmpl,err:=template.ParseGlob("./template/*/*/*")
    	// tmpl,err:=template.ParseGlob("./template/**/*.tmpl")
    	if err != nil {
    		log.Println("create template failed, err1:", err)
    		return
    	}
    	err=tmpl.ExecuteTemplate(w,"useblock.tmpl",nil)
    	if err != nil {
    		log.Println("create template failed, err2:", err)
    		return
    	}
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    访问a1页面,内容如下
    part1
    this is part0
    part2
    this is part0
    part3
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    遇到的bug:
    为了测试建了test2文件夹,一读取就报错The handle is invalid。删除后重新建一个就没bug了,原因不明。

    重命名模板名

    //template\test1\block.tmpl
    {{define "a/b/c.html"}}
        DOCTYPE html>
        <html lang="en">
        <head>
            <meta charset="UTF-8">
            <meta http-equiv="X-UA-Compatible" content="IE=edge">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            {{template "js.html"}}
            <title>Documenttitle>
        head>
        <body>
            <div>part1div>
            {{template "part0"}}
            <div>part2div>
            {{block "part0" .}}{{end}}
            <div>part3div>
        body>
        html>
    {{end}}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    //template\test1\useblock.tmpl
    {{template "a/b/c.html"}}
    
    {{define "part0"}}
        <h1>this is part0 h1>
    {{end}}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
  • 相关阅读:
    Linux和Hadoop的学习
    62. 如何通过增强(Enhancement) 的方式给 SAP ABAP 标准程序增添新功能
    JavaScript_4 基本语法:DOM的元素操作
    从零开始做题:满屏的QR
    GIT的运用
    MySQL 流程控制
    一百八十一、Hive——海豚调度HiveSQL任务时当Hive的计算引擎是mr或spark时脚本的区别(踩坑,附截图)
    基于Vue+Element-ui开发的一个“月日组件”,并发布npm包
    人工智能AI 全栈体系(十二)
    第一个springboot程序
  • 原文地址:https://blog.csdn.net/weixin_43292547/article/details/126896608