Hero是一个高性能、强大并且易用的go模板引擎,工作原理是把模板预编译为go代码。Hero目前已经在 bthub.io 的线上环境上使用。
go get github.com/shiyanhui/hero go install github.com/shiyanhui/hero/hero
hero [options] options: - source: 模板目录,默认为当前目录 - dest: 生成的go代码的目录,如果没有设置的话,和source一样 - pkgname: 生成的go代码包的名称,默认为template - watch: 是否监控模板文件改动并自动编译 example: hero -source="./" hero -source="$GOPATH/src/app/template" -watch
假设我们现在要渲染一个用户列表模板 userlist.html
, 它继承自 index.html
, 并且一个用户的模板是 user.html
. 我们还假设所有的模板都在 $GOPATH/src/app/template
目录下。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <%@ body { %> <% } %> </body> </html>
<%: func UserList(userList []string) []byte %> <%~ "index.html" %> <%@ body { %> <% for _, user := range userList { %> <ul> <%+ "user.html" %> </ul> <% } %> <% } %>
<li> <%= user %> </li>
然后我们编译这些模板:
hero -source="$GOPATH/src/app/template"
编译后,我们将在同一个目录下得到三个go文件,分别是 index.html.go
, user.html.go
and userlist.html.go
, 然后我们在http server里边去调用模板:
package main import ( "app/template" "net/http" ) func main() { http.HandleFunc("/users", func(w http.ResponseWriter, req *http.Request) { var userList = []string { "Alice", "Bob", "Tom", } w.Write(template.UserList(userList)) }) http.ListenAndServe(":8080", nil) }
最后,运行这个http server,访问 http://localhost:8080/users
,我们就能得到我们期待的结果了!
Hero总共有九种语句,他们分别是:
函数定义语句 <%: func define %>
[]byte
参数。 <%: func UserList(userList []string) []byte %>
模板继承语句 <%~ "parent template" %>
<%~ "index.html" >
模板include语句 <%+ "sub template" %>
C++
中的 #include
有点类似。 <%+ "user.html" >
包导入语句 <%! go code %>
该语句用来声明所有在函数外的代码,包括依赖包导入、全局变量、const等。
该语句不会被子模板所继承
例:
<%! import ( "fmt" "strings" ) var a int const b = "hello, world" func Add(a, b int) int { return a + b } type S struct { Name string } func (s S) String() string { return s.Name } %>
块语句 <%@ blockName { %> <% } %>
块语句是用来在子模板中重写父模中的同名块,进而实现模板的继承。
例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <%@ body { %> <% } %> </body> </html>
Go代码语句 <% go code %>
该语句定义了函数内部的代码部分。
例:
<% for _, user := userList { %> <% if user != "Alice" { %> <%= user %> <% } %> <% } %> <% a, b := 1, 2 c := Add(a, b) %>
原生值语句 <%== statement %>
该语句把变量转换为string。
例:
<%== a %> <%== a + b %> <%== Add(a, b) %> <%== user.Name %>
转义值语句 <%= statement %>
该语句把变量转换为string后,又通过 html.EscapesString
记性转义。
例:
<%= a %> <%= a + b %> <%= Add(a, b) %> <%= user.Name %>
注释语句 <%# note %>
<# 这是一个注释 >
. Hero is licensed under the Apache License.