-
重定向
HTTP 重定向很容易。 内部、外部重定向均支持。 ```go r.GET("/test", func(c *gin.Context) { c.Redirect(http.StatusMovedPermanently, "http://www.google.com/") }) ``` -
-
内置函数一览
[![](https://cos.micuer.com/web/markdown/63f84c63a4e38.png)](https://cos.micuer.com/web/markdown/63f84c63a4e38.png) -
-
-
-
-
-
-
自定义函数
### 定义 - 首字母大写为公用方法 ```go func Html(str string) (res template.HTML) { return template.HTML(str) } ``` str 为接受参数 res 为返回值 ### 加载 ` -
模板自定义函数
//然后通过SetFuncMap方法把我们自定义的函数Set进去,并且要在LoadHTMLGlob加载模板之前 router.SetFuncMap(template.FuncMap{ "friendtime": common.GetFriendTime, }) 然后通过 -
显示转码HTML
这里需要用 template.HTML 处理一下 ```go func GetContent(c *gin.Context) { contentid := c.Param("contentid") res := model.ContentGetArticle(contentid) -
-
-
air热加载[win]下
每次修改了文件,都需要重新启动一下命令,这个操作很麻烦。于是就想着热加载,朋友推荐的air热加载,我也用这个。 运行 C:\Users\xx.xxx\go\pkg\mod\github.com\cosmtrek\air@v1.41.0\air.exe air 找到你真实的