Fork me on GitHub
摘要: 5.gin 中间件 5.1 全局中间件 package main import ( "fmt" "github.com/gin-gonic/gin" "time" ) func MiddleWare() gin.HandlerFunc { return func(c *gin.Context) { 阅读全文
posted @ 2020-07-21 00:14 是阿凯啊 阅读(181) 评论(0) 推荐(0)
摘要: 4.gin 渲染 4.1各种数据格式响应 package main import ( "github.com/gin-gonic/gin" "github.com/gin-gonic/gin/testdata/protoexample" ) func main() { r := gin.Defaul 阅读全文
posted @ 2020-07-21 00:13 是阿凯啊 阅读(226) 评论(0) 推荐(0)