Go 模板引擎是一种用于构建文本输出的模板引擎,它可以用于生成 HTML、XML、JSON 等格式的文本输出。Go 模板引擎是 Go 语言的标准库,它可以帮助我们快速地创建功能丰富的 Web 应用程序。
Go 模板引擎使用 Go 语言语法,允许我们在模板中使用 if-else 语句、for 循环、range 循环等语句,还可以定义函数和方法。此外,Go 模板引擎还允许我们在模板中使用静态文件(如 CSS、JavaScript 等)和动态文件(如图片、音频等)。
package main import ( "html/template" "os" ) func main() { t, err := template.ParseFiles("hello.tmpl") if err != nil { panic(err) } data := map[string]string{ "Name": "John Doe", } err = t.Execute(os.Stdout, data) if err != nil { panic(err) } }
模板引擎支持i18n
特性,可以通过给上下文注入特定的i18n
语言来实现不同的请求/页面使用不同的i18n
语言渲染。例如:
package main
import (
"context"
"fmt"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/i18n/gi18n"
)
func main() {
var (
ctxCN = gi18n.WithLanguage(context.TODO(), "zh-CN")
ctxJa = gi18n.WithLanguage(context.TODO(), "ja")
content = `{{.name}} says "{#hello}{#world}!"`
)
result1, _ := g.View().ParseContent(ctxCN, content, g.Map{
"name": "john",
})
fmt.Println(result1)
result2, _ := g.View().ParseContent(ctxJa, content, g.Map{
"name": "john",
})
fmt.Println(result2)
}
执行后,输出结果为:(保证当前运行目录带有i18n转译配置文件)
john says "你好世界!"
john says "こんにちは世界!"
goframe
框架的WebServer
的返回对象中提供了基础的模板解析方法,如下:
func (r *Response) WriteTpl(tpl string, params map[string]interface{}, funcMap ...map[string]interface{}) error
func (r *Response) WriteTplContent(content string, params map[string]interface{}, funcMap ...map[string]interface{}) error
其中WriteTpl
用于输出模板文件,WriteTplContent
用于直接解析输出模板内容。
使用示例:
package main
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/net/ghttp"
)
func main() {
s := g.Server()
s.BindHandler("/", func(r *ghttp.Request) {
r.Cookie.Set("theme", "default")
r.Session.Set("name", "john")
r.Response.WriteTplContent(`Cookie:{{.Cookie.theme}}, Session:{{.Session.name}}`, nil)
})
s.SetPort(8199)
s.Run()
}
执行后,输出结果为:
Cookie:default, Session:john
goframe
为路由控制器注册方式提供了良好的模板引擎支持,由gmvc.View
视图对象进行管理,提供了良好的数据隔离性。控制器视图是并发安全设计的,允许在多线程中异步操作。
控制器注册方式类似于PHP执行流程,相对来说性能比较低效,因此未来不再推荐使用控制器注册方式。
func (view *View) Assign(key string, value interface{})
func (view *View) Assigns(data gview.Params)
func (view *View) Parse(file string) ([]byte, error)
func (view *View) ParseContent(content string) ([]byte, error)
func (view *View) Display(files ...string) error
func (view *View) DisplayContent(content string) error
func (view *View) LockFunc(f func(vars map[string]interface{}))
func (view *View) RLockFunc(f func(vars map[string]interface{}))
使用示例1:
package main
import (
"github.com/gogf/gf/v2/net/ghttp"
"github.com/gogf/gf/v2/frame/gmvc"
)
type ControllerTemplate struct {
gmvc.Controller
}
func (c *ControllerTemplate) Info() {
c.View.Assign("name", "john")
c.View.Assigns(map[string]interface{}{
"age" : 18,
"score" : 100,
})
c.View.Display("index.tpl")
}
func main() {
s := ghttp.GetServer()
s.BindController("/template", new(ControllerTemplate))
s.SetPort(8199)
s.Run()
}
其中index.tpl
的模板内容如下:
<html>
<head>
<title>gf template engine</title>
</head>
<body>
<p>Name: {{.name}}</p>
<p>Age: {{.age}}</p>
<p>Score:{{.score}}</p>
</body>
</html>
执行后,访问 http://127.0.0.1:8199/template/info 可以看到模板被解析并展示到页面上。如果页面报错找不到模板文件,没有关系,因为这里并没有对模板目录做设置,默认是当前可行文件的执行目录(Linux&Mac
下是/tmp
目录,Windows下是C:Documents and Settings用户名Local SettingsTemp
)。
其中,给定的模板文件file
参数是需要带完整的文件名后缀,例如:index.tpl
,index.html
等等,模板引擎对模板文件后缀名没有要求,用户可完全自定义。此外,模板文件参数也支持文件的绝对路径(完整的文件路径)。
当然,我们也可以直接解析模板内容,例如:
package main
import (
"github.com/gogf/gf/v2/net/ghttp"
"github.com/gogf/gf/v2/frame/gmvc"
)
type ControllerTemplate struct {
gmvc.Controller
}
func (c *ControllerTemplate) Info() {
c.View.Assign("name", "john")
c.View.Assigns(map[string]interface{}{
"age" : 18,
"score" : 100,
})
c.View.DisplayContent(`
<html>
<head>
<title>gf template engine</title>
</head>
<body>
<p>Name: {{.name}}</p>
<p>Age: {{.age}}</p>
<p>Score:{{.score}}</p>
</body>
</html>
`)
}
func main() {
s := ghttp.GetServer()
s.BindController("/template", new(ControllerTemplate{}))
s.SetPort(8199)
s.Run()
}
执行后,访问 http://127.0.0.1:8199/template/info 可以看到解析后的内容如下:
<html>
<head>
<title>gf template engine</title>
</head>
<body>
<p>Name: john</p>
<p>Age: 18</p>
<p>Score:100</p>
</body>
</html>
ORM组件目前支持常见的三种语法的子查询:Where子查询、Having子查询及From子查询。Where子查询...
基本介绍goframe框架提供了功能强大、使用便捷、灵活易扩展的数据/表单校验组件,由gvalid组件实现。gvalid组件实现...
ASP.NET TextBox MaxLength 属性 TextBox 控件定义和用法 MaxLength 属性用于设置或返回 TextBox 控件中所允许的最大字符数。 语...