mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 21:28:22 +08:00
21 lines
433 B
Go
21 lines
433 B
Go
package main
|
|
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/gf/g"
|
|
"gitee.com/johng/gf/g/os/gfile"
|
|
)
|
|
|
|
func main() {
|
|
v := g.View()
|
|
// 设置模板目录为当前main.go所在目录下的template目录
|
|
v.AddPath(gfile.MainPkgPath() + gfile.Separator + "template2")
|
|
b, err := v.Parse("index.html", map[string]interface{} {
|
|
"k" : "v",
|
|
})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Println(string(b))
|
|
} |