You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 3 Current »
WebServer内置变量请参考 数据返回-模板解析 章节。
WebServer
我们可以在模板中使用自定义的对象,并可在模板中访问对象的属性及调用其方法。
示例:
package main import ( "github.com/gogf/gf/frame/g" ) type T struct { Name string } func (t *T) Hello(name string) string { return "Hello " + name } func (t *T) Test() string { return "This is test" } func main() { t := &T{"John"} v := g.View() content := `{{.t.Hello "there"}}, my name's {{.t.Name}}. {{.t.Test}}.` if r, err := v.ParseContent(content, g.Map{"t" : t}); err != nil { g.Dump(err) } else { g.Dump(r) } }
其中,赋值给模板的变量既可以是对象指针也可以是对象变量。但是注意定义的对象方法,如果为对象指针那么只能调用方法接收器为对象指针的方法;如果为对象变量,那么只能调用方法接收器为对象的方法。
对象指针
对象变量
执行后,输出结果为:
Hello there, my name's John. This is test.