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

2019-12-10 20:02:21 +08:00
 xxjwxc

ginprc

golang gin 参数自动绑定工具

api 接口说明

支持 3 种接口模式

一,参数自动绑定

  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")
}

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

初始化项目(本项目以 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 如果喜欢请给星支持

4181 次点击
所在节点    程序员
7 条回复
mritd
2019-12-10 20:41:23 +08:00
可能个人原因,有点不太喜欢这种注释的方式扫;然后也是 写 spring 习惯了想弄一个这种无侵入的方式;
目前我的方案是类似 caddy1 的插件方式,全局 map,然后每个路由 func 通过调用一个 register 塞进 map 里,后面延迟初始化,代码类似这个 https://github.com/mritd/ginmvc/blob/master/routers/user.go#L20
xxjwxc
2019-12-10 22:53:32 +08:00
@mritd 你这是手动创建的吧? ginrpc 也支持手动创建。自动创建是可以省掉注册路由这一块。我这个框架是参考 go-micro 的注册方式,其实可以不用添加注解路由。它会执行默认注册路由方式。比如 hello.Hello
Trim21
2019-12-10 23:19:12 +08:00
这样的话是不是也有可能像 fastapi 一样从 query 和 path 里面绑定数据…
cuberlzy
2019-12-11 00:15:36 +08:00
我实现了一个像如下的
cuberlzy
2019-12-11 00:19:10 +08:00
我实现了一个像如下的

``` 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,不过暂时还没开源出来。只是表达一个写法哈哈哈。
xxjwxc
2019-12-11 00:22:34 +08:00
@Trim21 是的。
xxjwxc
2019-12-11 00:25:14 +08:00
@cuberlzy 哈哈,欢迎开源,欢迎共享。其实我也有考虑返回一个 obj。但是最后去掉了原因是。有时候我们可能返回多种类型,或者多个不确定值。这样局限性比较大了。不过我绝对我可以做一个可以带返回值的也可以不带返回值的。这样会好点。API 文档跟 Postman 正在测试阶段。哈哈很快开出来。

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/627746

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX