Fork me on GitHub
摘要: 一、结构体 1、后端 package main import ( "github.com/gin-gonic/gin" "net/http" ) type User struct { Id int Name string Age int } func StructDemo(ctx *gin.Cont 阅读全文
posted @ 2022-04-09 20:26 iveBoy 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 一、模板的使用 1、加载模板路径 当使用gin.Default方法创建一个router后需要加载模板路径,加载的方法可以使用: LoadHTMLGlob 只有一个参数,通配符,如:router.LoadHTMLGlob("templates/*"),查找当前项目路径下template文件夹下所有的h 阅读全文
posted @ 2022-04-09 12:16 iveBoy 阅读(1373) 评论(0) 推荐(0) 编辑
TOP