摘要: 目录结构 controller:与控制器相关 dao:与数据库相关 logic:与业务逻辑相关 model:模型层的增删改查 routers:路由层 static:静态文件层 templates:模板层 main.go:入口层 例子 go package main import ( "github. 阅读全文
posted @ 2020-04-28 16:46 紫色飞猪 阅读(739) 评论(1) 推荐(0) 编辑
摘要: [TOC] Gin+Gorm小项目 创建项目 引用静态文件 搭建架子 go package main import ( "github.com/gin gonic/gin" "net/http" ) //Tode Model type Tode struct { ID int Title strin 阅读全文
posted @ 2020-04-28 16:18 紫色飞猪 阅读(2366) 评论(0) 推荐(1) 编辑