0 Star 0 Fork 654

李明/gf

forked from John/gf 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
template2.go 358 Bytes
一键复制 编辑 原始数据 按行查看 历史
John 提交于 2018-04-24 23:09 +08:00 . 改进gf orm以及redis客户端的封装
package demo
import (
"gitee.com/johng/gf/g/net/ghttp"
"gitee.com/johng/gf/g"
)
func init() {
ghttp.GetServer().BindHandler("/template2", func(r *ghttp.Request){
content, _ := g.View().Parse("index.tpl", map[string]interface{}{
"id" : 123,
"name" : "john",
})
r.Response.Write(content)
})
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/limingsky/gf.git
git@gitee.com:limingsky/gf.git
limingsky
gf
gf
c9a36a8224f1

搜索帮助