规范路由
GoFrame中提供了规范化的路由注册方式,注册方法如下
func Handler(ctx context.Context, req *Request) (res *Response, err error)
其中Request
与Response
为自定义的结构体。
通过如下方式指定请求方法与路径
type HelloReq struct {
g.Meta `path:"/hello" method:"get"`
}
GoFrame中提供了规范化的路由注册方式,注册方法如下
func Handler(ctx context.Context, req *Request) (res *Response, err error)
其中Request
与Response
为自定义的结构体。
通过如下方式指定请求方法与路径
type HelloReq struct {
g.Meta `path:"/hello" method:"get"`
}