package main import ( "github.com/gogf/gf/frame/g" "github.com/gogf/gf/net/ghttp" ) func main() { s := g.Server() s.BindHandler("/", func(r *ghttp.Request) { if r.GetInt("type") == 1 { r.Response.Writeln("john") } r.Response.Writeln("smith") }) s.SetPort(8199) s.Run() }