gin自動引數繫結工具,rpc支援

xie1xiao1jun發表於2019-06-22

golang gin 引數自動繫結工具

  • ginrpc
  • 基於 go-gin 的 json restful 風格的 golang 基礎庫
  • 自帶請求引數過濾及繫結實現
  • 程式碼註冊簡單且支援多種註冊方式

1、 目錄結構說明

  • ginrpc/base/common.go 基礎庫
  • ginrpc/base/api/context.go 自定義 context 內容
  • 支援引數自動檢測 binding:"required"... validator
  • 支援 rpc 自動對映

2、api 介面說明

支援 3 種介面模式

  • func(*gin.Context) //gogin 原始介面
  • func(*api.Context) //自定義的 context 型別
  • func(*api.Context,req) //自定義的 context 型別,帶 request 請求引數 func(*gin.Context,*req) ...... 等介面模式

示例程式碼

  package main

import (
    "fmt"
    "net/http"

    "github.com/gin-gonic/gin"
    "github.com/xxjwxc/ginrpc/base"
    "github.com/xxjwxc/ginrpc/base/api"
)

type ReqTest struct {
    Access_token string `json:"access_token"`                 //access_token
    UserName     string `json:"user_name" binding:"required"` //使用者名稱
    Password     string `json:"password"`                     //新密碼
}

//TestFun1 gin 預設的函式回撥地址
func TestFun1(c *gin.Context) {
    fmt.Println(c.Params)
    c.String(200, "ok")
}

//TestFun2 自定義context的函式回撥地址
func TestFun2(c *api.Context) {
    fmt.Println(c.Params)
    c.JSON(http.StatusOK, "ok")
}

//TestFun3 帶自定義context跟已解析的req引數回撥方式
func TestFun3(c *api.Context, req *ReqTest) {
    fmt.Println(c.Params)
    fmt.Println(req)
    c.JSON(http.StatusOK, "ok")
}

//TestFun3 帶自定義context跟已解析的req引數回撥方式
func TestFun4(c *gin.Context, req ReqTest) {
    fmt.Println(c.Params)
    fmt.Println(req)

    c.JSON(http.StatusOK, req)
}

func main() {
    router := gin.Default()
    router.POST("/test1", base.GetHandlerFunc(TestFun1))
    router.POST("/test2", base.GetHandlerFunc(TestFun2))
    router.POST("/test3", base.GetHandlerFunc(TestFun3))
    router.POST("/test4", base.GetHandlerFunc(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"}'

傳送門 傳送門

如果你喜歡,請'star'

更多原創文章乾貨分享,請關注公眾號
  • gin自動引數繫結工具,rpc支援
  • 加微信實戰群請加微信(註明:實戰群):gocnio

相關文章