1 Star 0 Fork 0

qinaction/goshowdoc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
gin.go 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
qinaction 提交于 2022-08-02 18:49 . rt
package goshowdoc
import (
"errors"
"fmt"
"github.com/gin-gonic/gin"
"net/http"
"net/url"
"strconv"
)
type Gin struct {
}
func (g Gin) BindJSON(c, req interface{}) error {
ctx, ok := c.(*gin.Context)
if !ok {
return errors.New("类型错误")
}
return ctx.BindJSON(req)
}
func (g Gin) Set(c interface{}, key string, value interface{}) {
ctx, ok := c.(*gin.Context)
if !ok {
return
}
ctx.Set(key, value)
}
func (g Gin) JSON(c, data interface{}) {
ctx, ok := c.(*gin.Context)
if !ok {
return
}
ctx.JSON(http.StatusOK, data)
}
func (g Gin) GetDocParam(ctx interface{}) *docParam {
c, ok := ctx.(*gin.Context)
if !ok {
return nil
}
pageTitle := c.Request.Header.Get("title")
if pageTitle == "" {
fmt.Println("not found title in header")
return nil
}
pageTitle, _ = url.PathUnescape(pageTitle)
//接口没有文件夹和顺序也没关系
catName := c.Request.Header.Get("dir")
if pageTitle != "" {
catName, _ = url.PathUnescape(catName)
}
sNumber, _ := strconv.Atoi(c.Request.Header.Get("number"))
req, _ := c.Get("req")
resp, _ := c.Get("rsp")
method := c.Request.Method
return &docParam{
ApiKey: cli.Doc.ApiKey,
ApiToken: cli.Doc.ApiToken,
CatName: catName,
PageTitle: pageTitle,
PageContent: "",
SNumber: sNumber,
Router: c.Request.URL.String(),
Url: cli.Doc.UrlReq,
Req: req,
Resp: resp,
Method: method,
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/qinaction/goshowdoc.git
git@gitee.com:qinaction/goshowdoc.git
qinaction
goshowdoc
goshowdoc
master

搜索帮助