扩展GET/POST/DELETE/PATCH等接口,支持模板语法
guonaihong opened this issue · 0 comments
guonaihong commented
样例如下:
type endpoint struct {
Host string
OrgName string
AppName string
}
gout.GET("http://{{.Host}}/{{.OrgName}}/{{.AppName}}", &endpoint{Host:"demo.xx", OrgName:"测试",AppName: "测试"}).Do()
场景:
为了支持url能和结构体绑定。