gin+gorm
Posted apesplan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gin+gorm相关的知识,希望对你有一定的参考价值。
在【环境变量】中添加如下【用户变量】/【系统变量】:GO111MODULE
,值为on
go mod init目录
在项目中新建文件main.go
,并添加测试代码
package main
import "github.com/gin-gonic/gin"
func main() {
r := gin.Default()
r.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
})
r.Run() // listen and serve on 0.0.0.0:8080
}
当前
go build
以上是关于gin+gorm的主要内容,如果未能解决你的问题,请参考以下文章
Go实战Gin + Gorm 基于RESTful API 的简单备忘录 | 含接口文档