一、配置镜像
go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn,direct
二、创建go项目
三、安装依赖
go get -u github.com/gin-gonic/gin
四、新建入口
package main import ( "github.com/gin-gonic/gin" "net/http" ) func Hello(c *gin.Context) { //以字符串返回 c.String(200, "hello %s", "world") //以JSON返回 gin.H是map的一个快捷方式 c.JSON(http.StatusOK, gin.H{ "data": "success", "code": 200, }) } func main() { //创建一个默认的路由引擎 e := gin.Default() //GET /hello路径 e.GET("/hello", Hello) //运行 e.Run() }