摘要:从模板文件构建首页新闻手动的指定每一个模板文件,在一些场景下难免难以满足需求,我们可以使用通配符正则匹配载入。
从字符串载入模板
我们可以定义模板字符串,然后载入并解析渲染:
template.New(tplName string).Parse(tpl string)
// 从字符串模板构建 tplStr := ` {{ .Name }} {{ .Age }} ` // if parse failed Must will render a panic error tpl := template.Must(template.New("tplName").Parse(tplStr)) tpl.Execute(os.Stdout, map[string]interface{}{Name: "big_cat", Age: 29})从文件载入模板 模板语法
模板文件,建议为每个模板文件显式的定义模板名称:{{ define "tplName" }},否则会因模板对象名与模板名不一致,无法解析(条件分支很多,不如按一种标准写法实现),另展示一些基本的模板语法。
使用 {{ define "tplName" }} 定义模板名
使用 {{ template "tplName" . }}引入其他模板
使用 . 访问当前数据域:比如range里使用.访问的其实是循环项的数据域
使用 $. 访问绝对顶层数据域
views/header.html{{ define "header" }}views/footer.html{{ .PageTitle }} {{ end }}
{{ define "footer" }} {{ end }}views/index/index.html
{{ define "index/index" }} {{/*引用其他模板 注意后面的 . */}} {{ template "header" . }}views/news/index.htmlhello, {{ .Name }}, age {{ .Age }}{{ template "footer" . }} {{ end }}
{{ define "news/index" }} {{ template "header" . }} {{/* 页面变量定义 */}} {{ $pageTitle := "news title" }} {{ $pageTitleLen := len $pageTitle }} {{/* 长度 > 4 才输出 eq ne gt lt ge le */}} {{ if gt $pageTitleLen 4 }}template.ParseFiles{{ $pageTitle }}
{{ end }} {{ $c1 := gt 4 3}} {{ $c2 := lt 2 3 }} {{/*and or not 条件必须为标量值 不能是逻辑表达式 如果需要逻辑表达式请先求值*/}} {{ if and $c1 $c2 }}1 == 1 3 > 2 4 < 5
{{ end }}{{ template "footer" . }} {{ end }}{{ range .List }} {{ $title := .Title }} {{/* .Title 上下文变量调用 func param1 param2 方法/函数调用 $.根节点变量调用 */}}
{{/* !empty Total 才输出*/}} {{ with .Total }}- {{ $title }} -- {{ .CreatedAt.Format "2006-01-02 15:04:05" }} -- Author {{ $.Author }}
{{end}}总数:{{ . }}{{ end }}
手动定义需要载入的模板文件,解析后制定需要渲染的模板名news/index。
// 从模板文件构建 tpl := template.Must( template.ParseFiles( "views/index/index.html", "views/news/index.html", "views/header.html", "views/footer.html", ), ) // render template with tplName index _ = tpl.ExecuteTemplate( os.Stdout, "index/index", map[string]interface{}{ PageTitle: "首页", Name: "big_cat", Age: 29, }, ) // render template with tplName index _ = tpl.ExecuteTemplate( os.Stdout, "news/index", map[string]interface{}{ "PageTitle": "新闻", "List": []struct { Title string CreatedAt time.Time }{ {Title: "this is golang views/template example", CreatedAt: time.Now()}, {Title: "to be honest, i don"t very like this raw engine", CreatedAt: time.Now()}, }, "Total": 1, "Author": "big_cat", }, )template.ParseGlob
手动的指定每一个模板文件,在一些场景下难免难以满足需求,我们可以使用通配符正则匹配载入。
1、正则不应包含文件夹,否则会因文件夹被作为视图载入无法解析而报错
2、可以设定多个模式串,如下我们载入了一级目录和二级目录的视图文件
// 从模板文件构建 tpl := template.Must(template.ParseGlob("views/*.html")) template.Must(tpl.ParseGlob("views/*/*.html")) // render template with tplName index // render template with tplName index _ = tpl.ExecuteTemplate( os.Stdout, "index/index", map[string]interface{}{ PageTitle: "首页", Name: "big_cat", Age: 29, }, ) // render template with tplName index _ = tpl.ExecuteTemplate( os.Stdout, "news/index", map[string]interface{}{ "PageTitle": "新闻", "List": []struct { Title string CreatedAt time.Time }{ {Title: "this is golang views/template example", CreatedAt: time.Now()}, {Title: "to be honest, i don"t very like this raw engine", CreatedAt: time.Now()}, }, "Total": 1, "Author": "big_cat", }, )Web服务器
结合html/template模板库和net/http实现一个可以使用模板渲染并返回html页面的web服器。
package main import ( "html/template" "log" "net/http" "time" ) var ( htmlTplEngine *template.Template htmlTplEngineErr error ) func init() { // 初始化模板引擎 并加载各层级的模板文件 // 注意 views/* 不会对子目录递归处理 且会将子目录匹配 作为模板处理造成解析错误 // 若存在与模板文件同级的子目录时 应指定模板文件扩展名来防止目录被作为模板文件处理 // 然后通过 view/*/*.html 来加载 view 下的各子目录中的模板文件 htmlTplEngine = template.New("htmlTplEngine") // 模板根目录下的模板文件 一些公共文件 _, htmlTplEngineErr = htmlTplEngine.ParseGlob("views/*.html") if nil != htmlTplEngineErr { log.Panic(htmlTplEngineErr.Error()) } // 其他子目录下的模板文件 _, htmlTplEngineErr = htmlTplEngine.ParseGlob("views/*/*.html") if nil != htmlTplEngineErr { log.Panic(htmlTplEngineErr.Error()) } } // index func IndexHandler(w http.ResponseWriter, r *http.Request) { _ = htmlTplEngine.ExecuteTemplate( w, "index/index", map[string]interface{}{"PageTitle": "首页", "Name": "sqrt_cat", "Age": 25}, ) } // news func NewsHandler(w http.ResponseWriter, r *http.Request) { _ = htmlTplEngine.ExecuteTemplate( w, "news/index", map[string]interface{}{ "PageTitle": "新闻", "List": []struct { Title string CreatedAt time.Time }{ {Title: "this is golang views/template example", CreatedAt: time.Now()}, {Title: "to be honest, i don"t very like this raw engine", CreatedAt: time.Now()}, }, "Total": 1, "Author": "big_cat", }, ) } func main() { http.HandleFunc("/", IndexHandler) http.HandleFunc("/index", IndexHandler) http.HandleFunc("/news", NewsHandler) serverErr := http.ListenAndServe(":8085", nil) if nil != serverErr { log.Panic(serverErr.Error()) } }
注意:模板对象是有名字属性的,template.New("tplName"),如果没有显示的定义名字,则会使用第一个被载入的视图文件的baseName做默认名,比如我们使用template.ParseFiles/template.ParseGlob直接生成模板对象时,没有指定模板对象名,则会使用第一个被载入的文件,比如views/index/index.html的baseName即index.html做默认名,而后如果tplObj.Execute方法执行渲染时,会去查找名为index.html的模板,所以常用的还是tplObj.ExecuteTemplate自己指定要渲染的模板名,省的一团乱。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/53928.html
摘要:更好的方案模板分离原则模板分离原则将定义模板的那一部分,与的代码逻辑分离开来,让代码更加优雅且利于维护。 showImg(https://segmentfault.com/img/bVJ73t?w=800&h=316); 引言 在前端开发中,经常需要动态添加一些元素到页面上。那么如何通过一些技巧,优化动态创建页面元素的方式,使得代码更加优雅,并且更易于维护呢?接下来我们通过研究一些实例...
摘要:更好的方案模板分离原则模板分离原则将定义模板的那一部分,与的代码逻辑分离开来,让代码更加优雅且利于维护。 showImg(https://segmentfault.com/img/bVJ73t?w=800&h=316); 引言 在前端开发中,经常需要动态添加一些元素到页面上。那么如何通过一些技巧,优化动态创建页面元素的方式,使得代码更加优雅,并且更易于维护呢?接下来我们通过研究一些实例...
摘要:但由于和技术过于和复杂,并没能得到广泛的推广。但是在浏览器内并不适用。依托模块化编程,的实现方式更为简单清晰,一个网页不再是传统的类似文档的页面,而是一个完整的应用程序。到了这里,我们的主角登场了年此处应有掌声。和差不多同期登场的还有。 Github:https://github.com/fenivana/w...webpack 更新到了 4.0,官网还没有更新文档。因此把教程更新一下...
摘要:方法三使用调用父作用域中的函数实例地址同样采用了缺省写法,运行之后,弹出窗口布尔值或者字符,默认值为这个配置选项可以让我们提取包含在指令那个元素里面的内容,再将它放置在指令模板的特定位置。 准备代码,会在实例中用到 var app = angular.module(app, []); angular指令定义大致如下 app.directive(directiveName, functi...
摘要:方法三使用调用父作用域中的函数实例地址同样采用了缺省写法,运行之后,弹出窗口布尔值或者字符,默认值为这个配置选项可以让我们提取包含在指令那个元素里面的内容,再将它放置在指令模板的特定位置。 准备代码,会在实例中用到 var app = angular.module(app, []); angular指令定义大致如下 app.directive(directiveName, functi...
阅读 2900·2021-10-14 09:43
阅读 2797·2021-10-14 09:42
阅读 4518·2021-09-22 15:56
阅读 2327·2019-08-30 10:49
阅读 1566·2019-08-26 13:34
阅读 2316·2019-08-26 10:35
阅读 564·2019-08-23 17:57
阅读 1967·2019-08-23 17:15