内置变量

    访问默认的配置管理(config.toml)对象Map值。

    使用方式:

    使用方式:

    1. {{.Cookie.键名}}

    访问当前请求的Session对象Map值。

    使用示例:

    1. package main
    2. import (
    3. "gitee.com/johng/gf/g/net/ghttp"
    4. )
    5. func main() {
    6. s.BindHandler("/", func(r *ghttp.Request){
    7. r.Cookie.Set("theme", "default")
    8. content :=`Config:{{.Config.redis.cache}}, Cookie:{{.Cookie.theme}}, Session:{{.Session.name}}`
    9. r.Response.WriteTplContent(content, nil)
    10. })
    11. s.SetPort(8199)
    12. s.Run()
    13. }

    其中,config.toml内容为:

    执行后,访问http://127.0.0.1:8199/,输出结果为: