VSCode 搭建Gin

VSCode 搭建Gin,第1张

目录 1. 创建项目2. 下载并安装 gin3. 新建main.go4. 运行项目

Gin 的官网:https://gin-gonic.com/zh-cn/
Gin Github 地址:https://github.com/gin-gonic/gin
安装 Gin 软件包前,需要先安装 Go 并设置 Go 工作区,并且需要使用Go 1.13 及以上版本,这里使用的是 1.17.5

1. 创建项目 创建文件夹
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文件


3. 新建main.go 引入gin
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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/990037.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存