前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >(摘抄)GO语言中template的用法

(摘抄)GO语言中template的用法

作者头像
李海彬
发布2018-03-19 16:05:47
9670
发布2018-03-19 16:05:47
举报
文章被收录于专栏:Golang语言社区Golang语言社区

When a web service responds with data or html pages, there is usually a lot of content that isstandard. Within that there needs to be modifications done based on the user and what has been requested. Templates are a way to merge generic text with more specific text. i.e. retain the content that is common in the template and then substitute the specific content as required.

In Go, we use the template package and methods like Parse, ParseFile, Execute to load a template from a string or file and then perform the merge. The content to merge is within a defined type and that has exported fields, i.e. fields within the struct that are used within the template have to start with a capital letter.

Typical usage of templates is within html code that is generated from the server side. We wouldopen a template file which has already been defined, then merge that with some data we have using template.Execute which writes out the merged data into the io.Writer which is the first parameter. In the case of web functions, the io.Writer instance is passed into the handler ashttp.ResponseWriter. Partial code

  1. func handler(w http.ResponseWriter, r *http.Request) {
  2. t := template.New("some template") //create a new template
  3. t, _ = t.ParseFiles("tmpl/welcome.html", nil) //open and parse a template text file
  4. user := GetCurrentlyLoggedInUser() //a method we have separately defined to get the value for a type
  5. t.Execute(w, user) //substitute fields in the template 't', with values from 'user' and write it out to 'w' which implements io.Writer
  6. }

复制代码

We should be seeing other examples of actual html code which utilizes this functionality. But for the purposes of learning, to write out all that html is unnecessary clutter. So for learning purposes, we shall use simpler code where I can illustrate the template concepts more clearly. * Instead of template.ParseFiles to which we have to pass one or more file paths, I shall usetemplate.Parse for which I can give the text string directly in the code where it would be easier for you to see. * Instead of writing it as a web service, we shall write code we can execute from the commandline * We shall use the predefined variable os.Stdout which refers to the standard output to print out the merged data - os.Stdout implements io.Writer Field substitution - {{.FieldName}}To include the content of a field within a template, enclose it within curly braces and add a dot at the beginning. E.g. if Name is a field within a struct and its value needs to be substituted while merging, then include the text {{.Name}} in the template. Do remember that the field name has to be present and it should also be exported (i.e. it should begin with a capital letter in the type definition), or there could be errors. Full program

  1. package main
  2. import (
  3. "os"
  4. "text/template"
  5. )
  6. type Person struct {
  7. Name string //exported field since it begins with a capital letter
  8. }
  9. func main() {
  10. t := template.New(“hello template”) //create a new template with some name
  11. t, _ = t.Parse("hello {{.Name}}!") //parse some content and generate a template, which is an internal representation
  12. p := Person{Name:"Mary"} //define an instance with required field
  13. t.Execute(os.Stdout, p) //merge template ‘t’ with content of ‘p’
  14. }

复制代码

hello Mary! For the sake of completeness, let’s do an example where there is an error due to a missing field. In the below code, we have a field nonExportedAgeField, which, since it starts with a small letter, is not exported. Therefore when merging there is an error. You can check for the error on the return value of the Execute function. Full program

  1. package main
  2. import (
  3. "os"
  4. "text/template"
  5. "fmt"
  6. )
  7. type Person struct {
  8. Name string
  9. nonExportedAgeField string //because it doesn't start with a capital letter
  10. }
  11. func main() {
  12. p:= Person{Name: "Mary", nonExportedAgeField: "31"}
  13. t := template.New("nonexported template demo")
  14. t, _ = t.Parse("hello {{.Name}}! Age is {{.nonExportedAgeField}}.")
  15. err := t.Execute(os.Stdout, p)
  16. if err != nil {
  17. fmt.Println("There was an error:", err.String())
  18. }
  19. }

复制代码

hello Mary! Age is There was an error: template: nonexported template demo:1: can't evaluate field nonExportedAgeField in type main.Person template Must function - to check validity of template textThe static Must function checks for the validity of the template content, i.e. things like whether the braces are matches, whether comments are closed, and whether variables are properly formed, etc. In the example below, we have two valid template texts and they parse without causing a panic. The third one, however, has an unmatched brace and will panic. Full program

代码语言:javascript
复制
package main



import (

    "text/template"

    "fmt"

    )



func main() {

    tOk := template.New("first")

    template.Must(tOk.Parse(" some static text /* and a comment */")) //a valid template, so no panic with Must

    fmt.Println("The first one parsed OK.")



    template.Must(template.New("second").Parse("some static text {{ .Name }}")) 

    fmt.Println("The second one parsed OK.")



    fmt.Println("The next one ought to fail.")

    tErr := template.New("check parse error with Must")

    template.Must(tErr.Parse(" some static text {{ .Name }")) // due to unmatched brace, there should be a panic here

}

复制代码

The first one parsed OK. The second one parsed OK. The next one ought to fail. panic: template: check parse error with Must:1: unexpected "}" in command runtime.panic+0xac ... 说明:以上内容摘抄自:http://golangtutorials.blogspot.com/2011/06/go-templates.html

本文参与 腾讯云自媒体分享计划,分享自微信公众号。
原始发表:2016-01-03,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 Golang语言社区 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档