内置变量
访问默认的配置管理(config.toml
)对象Map值。
使用方式:
使用方式:
{{.Cookie.键名}}
访问当前请求的Session
对象Map值。
使用示例:
package main
import (
"gitee.com/johng/gf/g/net/ghttp"
)
func main() {
s.BindHandler("/", func(r *ghttp.Request){
r.Cookie.Set("theme", "default")
content :=`Config:{{.Config.redis.cache}}, Cookie:{{.Cookie.theme}}, Session:{{.Session.name}}`
r.Response.WriteTplContent(content, nil)
})
s.SetPort(8199)
s.Run()
}
其中,config.toml
内容为:
执行后,访问http://127.0.0.1:8199/
,输出结果为: