12

一个带有三个子模板的布局模板。

布局.html

<html>
  <body>
    {{template "tags"}}

    {{template "content"}}

    {{template "comment"}}
  </body>
</html>

标签.html

{{define "tags"}}
<div>
    {{.Name}}
<div>
{{end}}

内容.html

{{define "content"}}
<div>
   <p>{{.Title}}</p>
   <p>{{.Content}}</p>
</div>
{{end}}

评论.html

{{define "tags"}}
<div>
    {{.Note}}
</div>
{{end}}

代码

type Tags struct {
   Id int
   Name string
}

type Content struct {
   Id int
   Title string
   Content string
}

type Comment struct {
   Id int
   Note string
}


func main() {
    tags := &Tags{"Id":1, "Name":"golang"}
    Content := &Content{"Id":9, "Title":"Hello", "Content":"World!"}
    Comment := &Comment{"Id":2, "Note":"Good Day!"}
}

我很困惑如何渲染每个子模板并将结果组合到布局输出。

谢谢。

4

1 回答 1

26

与往常一样,文档是一个很好的起点。

我在操场上写了一个工作示例

稍微解释一下:

  1. 您不需要结构文字中的字符串:&Tags{Id: 1},不是&Tags{"Id":1}
  2. 您只能将一个对象传递给您的模板以执行,这将按照您在{{template <name> <arg>}}指令中的要求将对象分派到每个子模板。我使用了一个 ad-hocPage结构,但map[string]interface{}如果你愿意的话。
  3. 您需要解析每个模板(我在 Playground 中使用了字符串,但如果您已经拥有 html 文件, ParseFiles会这样做)
  4. 我使用 os.Stdout 来执行它,但你显然应该用相应的替换它ResponseWriter

和整个代码:

package main

import "fmt"
import "html/template"
import "os"

var page = `<html>
  <body>
    {{template "tags" .Tags}}

    {{template "content" .Content}}

    {{template "comment" .Comment}}
  </body>
</html>`

var tags = `{{define "tags"}}
<div>
    {{.Name}}
<div>
{{end}}`

var content = `{{define "content"}}
<div>
   <p>{{.Title}}</p>
   <p>{{.Content}}</p>
</div>
{{end}}`

var comment = `{{define "comment"}}
<div>
    {{.Note}}
</div>
{{end}}`

type Tags struct {
   Id int
   Name string
}

type Content struct {
   Id int
   Title string
   Content string
}

type Comment struct {
   Id int
   Note string
}

type Page struct {
    Tags *Tags
    Content *Content
    Comment *Comment
}

func main() {
    pagedata := &Page{Tags:&Tags{Id:1, Name:"golang"},
                      Content: &Content{Id:9, Title:"Hello", Content:"World!"},
                      Comment: &Comment{Id:2, Note:"Good Day!"}}
    tmpl := template.New("page")
    var err error
    if tmpl, err = tmpl.Parse(page); err != nil {
        fmt.Println(err)
    }
    if tmpl, err = tmpl.Parse(tags); err != nil {
        fmt.Println(err)
    }
    if tmpl, err = tmpl.Parse(comment); err != nil {
        fmt.Println(err)
    }
    if tmpl, err = tmpl.Parse(content); err != nil {
        fmt.Println(err)
    }
    tmpl.Execute(os.Stdout, pagedata)
}
于 2013-10-23T17:08:09.380 回答