摘要: 一. Cookie 1 func (con UserControl) Index(c *gin.Context) { 2 /*** 设置Cookie 3 func (c *Context) SetCookie(name, value string, maxAge int, path, domain 阅读全文
posted @ 2023-11-24 19:30 看一百次夜空里的深蓝 阅读(133) 评论(0) 推荐(0)
摘要: 一.中间件 1 package main 2 3 import ( 4 "fmt" 5 "gin01/middlewares" 6 "text/template" 7 "time" 8 9 "github.com/gin-gonic/gin" 10 ) 11 12 /*** 13 中间件的注意事项: 阅读全文
posted @ 2023-11-24 11:28 看一百次夜空里的深蓝 阅读(111) 评论(0) 推荐(0)