Files
gf/geg/os/gview/define/main.go

21 lines
315 B
Go

package main
import (
"fmt"
"github.com/gogf/gf/g"
"github.com/gogf/gf/g/os/gfile"
)
func main() {
v := g.View()
v.AddPath(gfile.MainPkgPath() + gfile.Separator + "template")
b, err := v.Parse("index.html", map[string]interface{}{
"k": "v",
})
if err != nil {
panic(err)
}
fmt.Println(string(b))
}