[笔记] Golang Template
1.header.tmpl 1 {{define "header"}} 2 <html> 3 <head> 4 <title>演示信息</title> 5 </head> 6 <body> 7 {{end}} 2. content.tmpl 1 {{define "content"}} 2 {{template "header"}} 3 <h1>演示嵌套</h1> 4 <ul> 5 <li>嵌套使用 define 定义子模板</li> 6 <li>调用使用 template</li> 7 </u...阅读全文