1. 创建项目 创建文件夹Gin 的官网:https://gin-gonic.com/zh-cn/
Gin Github 地址:https://github.com/gin-gonic/gin
安装 Gin 软件包前,需要先安装 Go 并设置 Go 工作区,并且需要使用Go 1.13 及以上版本,这里使用的是 1.17.5
用vscode打开文件夹 使用go mod管理项目,并生成go.mod文件
go mod init ginDemo1
2. 下载并安装 gin
go get -u github.com/gin-gonic/gin
如果下载不成功,可以先配置代理
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
下载成功后会显示下面的提示,并且生成一个go.sum文件
import "github.com/gin-gonic/gin"
返回hello world
package main
import "github.com/gin-gonic/gin"
func main() {
// 创建一个默认的路由引擎
r := gin.Default()
// 配置路由
r.GET("/", func(c *gin.Context) {
c.JSON(200, gin.H{
// c.JSON:返回 JSON 格式的数据
"message": "Hello world!",
})
})
// 启动 HTTP 服务,默认在 0.0.0.0:8080 启动服务
r.Run()
}
4. 运行项目
go run main.go
访问http://localhost:8080
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)