- 回调函数注册
- 使用示例1,与执行对象混合使用
- 使用示例2,使用包变量管理内部变量
- 使用示例3,请求参数绑定到struct对象
- 使用示例4,请求参数绑定+数据校验示例
回调函数注册
回调函数+执行对象混合注册是推荐的路由注册方式。
这种方式是最简单且最灵活的的路由注册方式,注册的服务可以是一个实例化对象的方法地址,也可以是一个包方法地址。服务需要的数据可以通过模块内部变量形式
或者对象内部变量形式
进行管理,开发者可根据实际情况进行灵活控制。
我们可以直接通过ghttp.BindHandler
方法完成回调函数的注册,在框架的开发手册中很多地方都使用了回调函数注册的方式来做演示,因为这种注册方式比较简单。
使用示例1,与执行对象混合使用
github.com/gogf/gf/blob/master/geg/frame/mvc/controller/demo/product.go
package demo
import (
"github.com/gogf/gf/g"
"github.com/gogf/gf/g/net/ghttp"
)
type Product struct {
total int
}
func init() {
p := &Product{}
g.Server().BindHandler("/product/total", p.Total)
g.Server().BindHandler("/product/list/{page}.html", p.List)
}
func (p *Product) Total(r *ghttp.Request) {
p.total++
r.Response.Write("total: ", p.total)
}
func (p *Product) List(r *ghttp.Request) {
r.Response.Write("page: ", r.Get("page"))
}
在这个示例中,我们使用对象来封装业务逻辑和所需的变量,使用回调函数注册来灵活注册对应的对象方法。
使用示例2,使用包变量管理内部变量
github.com/gogf/gf/blob/master/geg/frame/mvc/controller/stats/stats.go
package stats
import (
"github.com/gogf/gf/g"
"github.com/gogf/gf/g/net/ghttp"
)
var (
total int
)
func init() {
g.Server().BindHandler("/stats/total", showTotal)
}
func showTotal(r *ghttp.Request) {
total++
r.Response.Write("total:", total)
}
使用示例3,请求参数绑定到struct对象
github.com/gogf/gf/blob/master/geg/net/ghttp/server/request/request_struct.go
package main
import (
"github.com/gogf/gf/g"
"github.com/gogf/gf/g/net/ghttp"
)
type User struct {
Uid int `json:"uid"`
Name string `json:"name" params:"username"`
Pass1 string `json:"pass1" params:"password1,userpass1"`
Pass2 string `json:"pass2" params:"password3,userpass2"`
}
func main() {
s := g.Server()
s.BindHandler("/user", func(r *ghttp.Request){
user := new(User)
r.GetToStruct(user)
//r.GetPostToStruct(user)
//r.GetQueryToStruct(user)
r.Response.WriteJson(user)
})
s.SetPort(8199)
s.Run()
}
可以看到,我们可以在定义struct的时候使用params
的标签来指定匹配绑定的参数名称,并且支持多个参数名称的绑定,多个参数名称以,
号分隔。在使用中我们可以使用GetRequestToStruct/GetPostToStruct/GetQueryToStruct
三种方式来获得指定Method提交方式的参数map,此外GetToStruct
是GetRequestToStruct
的别名,大多数情况下我们使用该方式获取参数即可。
如果是其他方式提交参数,如果Json/Xml等等,由于设计到自定义参数格式的解析再绑定,请参考gconv
模块map转换struct的标签名称gconv
的用法示例。
以上示例执行后,我们手动访问地址http://127.0.0.1:8199/user?uid=1&name=john&password1=123&userpass2=123
,输出结果为:
{"name":"john","pass1":"123","pass2":"123","uid":1}
使用示例4,请求参数绑定+数据校验示例
github.com/gogf/gf/blob/master/geg/net/ghttp/server/request/request_validation.go
package main
import (
"github.com/gogf/gf/g"
"github.com/gogf/gf/g/net/ghttp"
"github.com/gogf/gf/g/util/gvalid"
)
func main() {
type User struct {
Uid int `gvalid:"uid@min:1"`
Name string `params:"username" gvalid:"username @required|length:6,30"`
Pass1 string `params:"password1" gvalid:"password1@required|password3"`
Pass2 string `params:"password2" gvalid:"password2@required|password3|same:password1#||两次密码不一致,请重新输入"`
}
s := g.Server()
s.BindHandler("/user", func(r *ghttp.Request){
user := new(User)
r.GetToStruct(user)
if err := gvalid.CheckStruct(user, nil); err != nil {
r.Response.WriteJson(err.Maps())
} else {
r.Response.Write("ok")
}
})
s.SetPort(8199)
s.Run()
}
其中,
- 这里使用了
r.GetToStruct(user)
方法将请求参数绑定到指定的user
对象上,注意这里的user
是User
的结构体实例化指针;在struct tag中,使用params
标签来指定参数名称与结构体属性名称对应关系; - 通过
gvalid
标签为gavlid
数据校验包特定的校验规则标签,具体请参考【数据校验】章节;其中,密码字段的校验规则为password3
,表示:密码格式为任意6-18位的可见字符,必须包含大小写字母、数字和特殊字符
; - 当校验染回结果非
nil
时,表示校验不通过,这里使用r.Response.WriteJson
方法返回json结果;
执行后,试着访问URL: http://127.0.0.1:8199/user?uid=1&name=john&password1=123&password2=456,输出结果为:
{"password1":{"password3":"密码格式不合法,密码格式为任意6-18位的可见字符,必须包含大小写字母、数字和特殊字符"},"password2":{"password3":"密码格式不合法,密码格式为任意6-18位的可见字符,必须包含大小写字母、数字和特殊字符","same":"两次密码不一致,请重新输入"},"username":{"length":"字段长度为6到30个字符"}}
假如我们访问访问URL: http://127.0.0.1:8199/user?uid=1&name=johng-cn&password1=John$123&password2=John$123,输出结果为:
ok