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

时间:2022-05-04
本文章向大家介绍(摘抄)GO语言中template的用法,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

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

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