跳至主要內容
  • Hostloc 空間訪問刷分
  • 售賣場
  • 廣告位
  • 賣站?

4563博客

全新的繁體中文 WordPress 網站
  • 首頁
  • golang gin 框架中间件 注解路由,自动参数绑定工具
未分類
12 6 月 2020

golang gin 框架中间件 注解路由,自动参数绑定工具

golang gin 框架中间件 注解路由,自动参数绑定工具

資深大佬 : xie1xiao1jun 85

ginprc

golang gin 框架中间件 注解路由,自动参数绑定工具

golang gin 参数自动绑定工具

  • 支持 rpc 自动映射
  • 支持对象注册
  • 支持注解路由
  • 基于 go-gin 的 json restful 风格的 golang 基础库
  • 自带请求参数过滤及绑定实现 binding:”required” validator
  • 代码注册简单且支持多种注册方式

api 接口说明

支持 3 种接口模式

  • func(*gin.Context) //go-gin 原始接口

    func(*api.Context) //自定义的 context 类型

  • func(*api.Context,req) //自定义的 context 类型,带 request 请求参数

    func(*api.Context,*req)

  • func(*gin.Context,*req) //go-gin context 类型,带 request 请求参数

    func(*gin.Context,req)

一,参数自动绑定

  package main  import (  "fmt"  "net/http"   _ "ginweb/routers" // debug 模式需要添加[mod]/routers 注册注解路由   "github.com/gin-gonic/gin"  "github.com/xxjwxc/ginrpc"  "github.com/xxjwxc/ginrpc/api" )  type ReqTest struct {  Access_token string `json:"access_token"`  UserName     string `json:"user_name" binding:"required"` // 带校验方式  Password     string `json:"password"` }  //TestFun4 带自定义 context 跟已解析的 req 参数回调方式 func TestFun4(c *gin.Context, req ReqTest) {  fmt.Println(c.Params)  fmt.Println(req)   c.JSON( http.StatusOK, req) }  func main() {  base := ginrpc.New()   router := gin.Default()  router.POST("/test4", base.HandlerFunc(TestFun4))  base.RegisterHandlerFunc(router, []string{"post", "get"}, "/test", TestFun4) // 多种请求方式注册  router.Run(":8080") }  
  • curl

    curl 'http://127.0.0.1:8080/test4' -H 'Content-Type: application/json' -d '{"access_token":"111", "user_name":"222", "password":"333"}'  

二,对象注册(注解路由)

初始化项目(本项目以 ginweb 为名字)

``` go mod init ginweb ``` 

代码 详细地址>>

  package main  import (  "fmt"  "net/http"   _ "ginweb/routers" // debug 模式需要添加[mod]/routers 注册注解路由   "github.com/gin-gonic/gin"  "github.com/xxjwxc/ginrpc"  "github.com/xxjwxc/ginrpc/api" )  type ReqTest struct {  Access_token string `json:"access_token"`  UserName     string `json:"user_name" binding:"required"` // 带校验方式  Password     string `json:"password"` }  // Hello ... type Hello struct { }  // Hello 带注解路由(参考 beego 形式) // @router /block [post,get] func (s *Hello) Hello(c *api.Context, req *ReqTest) {  fmt.Println(req)  fmt.Println(s.Index)  c.JSON( http.StatusOK, "ok") }  // Hello2 不带注解路由(参数为 2 默认 post) func (s *Hello) Hello2(c *gin.Context, req ReqTest) {  fmt.Println(req)  fmt.Println(s.Index)  c.JSON( http.StatusOK, "ok") }   func main() {  base := ginrpc.New(ginrpc.WithCtx(func(c *gin.Context) interface{} {   return api.NewCtx(c)  }), ginrpc.WithDebug(true), ginrpc.WithGroup("xxjwxc"))   router := gin.Default()  base.Register(router, new(Hello))                          // 对象注册 like(go-micro)  // or base.Register(router, new(Hello))   router.Run(":8080") } 

-注解路由相关说明

 // @router /block [post,get]  @router 标记   /block 路由   [post,get] method 调用方式  

1. 注解路由会自动创建[mod]/routers/gen_router.go 文件 需要在调用时加:

``` _ "[mod]/routers" // debug 模式需要添加[mod]/routers 注册注解路由  ```  默认也会在项目根目录生成[gen_router.data]文件(保留此文件,可以不用添加上面代码嵌入) 

2. 注解路由调用方式:

详细请看 demo  [ginweb](/sample/ginweb) 

3. 相关参数说明

ginrpc.WithCtx: 设置自定义 context  ginrpc.WithDebug(true) : 设置 debug 模式  ginrpc.WithGroup("xxjwxc") : 添加路由前缀 (也可以使用 gin.Group 分组)  ginrpc.WithBigCamel(true) : 设置大驼峰标准(false 为 web 模式,_,小写)  [更多]( https://godoc.org/github.com/xxjwxc/ginrpc) 

4. 执行 curl,可以自动参数绑定。直接看结果

curl 'http://127.0.0.1:8080/xxjwxc/block' -H 'Content-Type: application/json' -d '{"access_token":"111", "user_name":"222", "password":"333"}' 
curl 'http://127.0.0.1:8080/xxjwxc/hello.hello2' -H 'Content-Type: application/json' -d '{"access_token":"111", "user_name":"222", "password":"333"}' 

下一步

1.导出 api 文档  2.导出 postman 测试配置 

代码地址: ginprc 如果喜欢请给星支持

大佬有話說 (7)

  • 資深大佬 : mritd

    可能个人原因,有点不太喜欢这种注释的方式扫;然后也是 写 spring 习惯了想弄一个这种无侵入的方式;
    目前我的方案是类似 caddy1 的插件方式,全局 map,然后每个路由 func 通过调用一个 register 塞进 map 里,后面延迟初始化,代码类似这个 https://github.com/mritd/ginmvc/blob/master/routers/user.go#L20

  • 主 資深大佬 : xie1xiao1jun

    @mritd 你这是手动创建的吧? ginrpc 也支持手动创建。自动创建是可以省掉注册路由这一块。我这个框架是参考 go-micro 的注册方式,其实可以不用添加注解路由。它会执行默认注册路由方式。比如 hello.Hello

  • 資深大佬 : Trim21

    这样的话是不是也有可能像 fastapi 一样从 query 和 path 里面绑定数据…

  • 資深大佬 : cuberlzy

    我实现了一个像如下的

  • 資深大佬 : cuberlzy

    我实现了一个像如下的

    “` go
    func (* xxxService) Hello(req *request.Hello, session *base.Session) (*response, error) {
    define(
    author(“Tony”),
    description(“Hello, World”),
    method(“GET”),
    since(“1.0.1”),
    )

    // 具体的业务逻辑
    }
    “`

    根据方法名自动注册路由,也可以自动生成 API 文档和 Postman,不过暂时还没开源出来。只是表达一个写法哈哈哈。

  • 主 資深大佬 : xie1xiao1jun

    @Trim21 是的。

  • 主 資深大佬 : xie1xiao1jun

    @cuberlzy 哈哈,欢迎开源,欢迎共享。其实我也有考虑返回一个 obj。但是最后去掉了原因是。有时候我们可能返回多种类型,或者多个不确定值。这样局限性比较大了。不过我绝对我可以做一个可以带返回值的也可以不带返回值的。这样会好点。API 文档跟 Postman 正在测试阶段。哈哈很快开出来。

文章導覽

上一篇文章
下一篇文章

AD

其他操作

  • 登入
  • 訂閱網站內容的資訊提供
  • 訂閱留言的資訊提供
  • WordPress.org 台灣繁體中文

51la

4563博客

全新的繁體中文 WordPress 網站
返回頂端
本站採用 WordPress 建置 | 佈景主題採用 GretaThemes 所設計的 Memory
4563博客
  • Hostloc 空間訪問刷分
  • 售賣場
  • 廣告位
  • 賣站?
在這裡新增小工具