内容简介:go-mir v1.0.0 发布了,推荐使用。go-mir 是一个使用 golang 结构体标签信息将方法注册为 http engine handler 的辅助库,目前支持将方法注册到
go-mir v1.0.0 发布了,推荐使用。
新增特性
-
mir: 添加对handler的直接赋值
-
mir: 支持对单独field条目添加chain function信息,支持对单一路由handler插入middleware信息,目前基于go-chi的module/chi子模块支持该功能
-
module/chi: 添加对 go-chi 路由框架的支持
使用go-mir构建web服务的样例代码
-
github.com/alimy/mir-music 这是一个使用 go-mir + gin 构建的简单web服务样例代码,是spring-music的 go 实现
-
github.com/alimy/chi-music 这是使用 go-mir + go-chi 构建的简单web服务样例代码, 来源于spring-music的go实现
go-mir 是一个使用 golang 结构体标签信息将方法注册为 http engine handler 的辅助库,目前支持将方法注册到 Gin , Echo , Iris , Macaron , Mux , httprouter , go-chi 。
主要功能:
-
使用 go 结构体标签定义 handler 的路由信息用于注册
-
通过反射机制根据结构体标签信息获取结构体方法,并依据结构体标签信息注册到相应的 http engine 中,比如 Gin , Echo , Iris , Macaron , Mux , httprouter , go-chi
-
使用结构体方法编写 http handler
-
使用结构体标签定义 Middleware 信息,并注册到 http engine 中
代码示例:(eg: gin backend)
-
Get Mir.Gin module first
go get github.com/alimy/mir/module/gin@master
-
Then happy in codding enjoy your heart...
package main import( "github.com/alimy/mir" "github.com/gin-gonic/gin" "net/http" mirE "github.com/alimy/mir/module/gin" ) type site struct { Chain mir.Chain `mir:"-"` Group mir.Group `mir:"v1"` index mir.Get `mir:"/index/"` articles mir.Get `mir:"/articles/:category/#GetArticles"` } // Index handler of the index field that in site struct, the struct tag indicate // this handler will register to path "/index/" and method is http.MethodGet. func (h *site) Index(c *gin.Context) { c.String(http.StatusOK, "get index data") } // GetArticles handler of articles indicator that contains Host/Path/Queries/Handler info. // Path info is the second or first(if no host info) segment start with '/'(eg: /articles/:category/#GetArticles) // Handler info is forth info start with '#' that indicate real handler method name(eg: GetArticles).if no handler info will // use field name capital first char as default handler name(eg: if articles had no #GetArticles then the handler name will // is Articles) func (h *site) GetArticles(c *gin.Context) { c.String(http.StatusOK, "get articles data") } func main() { //Create a new gin engine engine := gin.New() // Register handler to engine by mir mirE.Register(engine, &site{Chain: gin.HandlersChain{gin.Logger()}}) // Start gin engine serve engine.Run() }
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- go-mir v2.3.2 发布,用 Go 结构体标签定义 handler 路由信息的辅助库
- go-mir v2.6.1 发布,用 Go 结构体标签定义 handler 路由信息的辅助库
- go-mir v1.0.0 发布 用 Go 结构体标签定义 handler 路由信息的辅助库
- go-mir v1.0.2 发布,用 Go 结构体标签定义 handler 路由信息的辅助库
- go-mir v2.0.0 发布,用 Go 结构体标签定义 handler 路由信息的辅助库
- golang辅助包介绍
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Python编程
[美]埃里克·马瑟斯 / 袁国忠 / 人民邮电出版社 / 2016-7-1 / CNY 89.00
本书是一本针对所有层次的Python 读者而作的Python 入门书。全书分两部分:第一部分介绍用Python 编程所必须了解的基本概念,包括matplotlib、NumPy 和Pygal 等强大的Python 库和工具介绍,以及列表、字典、if 语句、类、文件与异常、代码测试等内容;第二部分将理论付诸实践,讲解如何开发三个项目,包括简单的Python 2D 游戏开发如何利用数据生成交互式的信息图......一起来看看 《Python编程》 这本书的介绍吧!