Skip to content

GetStart

要求

  • >= Go v1.13

安装

前提:

  • 安装 Golang
  • 设置 Go 工作区

  • 下载并安装 gin:

$ go get -u github.com/gin-gonic/gin
  1. 在代码中引入
    import "github.com/gin-gonic/gin"
    import "net/http"
    

开始

先创建一个go文件

$ touch demo.go

接着编写下面的代码:

package main

import (
    "github.com/gin-gonic/gin"
    "net/http"
)

func main() {
    app := gin.Default()
    app.GET("/hi", func(c *gin.Context) {
        c.JSON(http.StatusOK, gin.H{
            "msg": "Hello Gin!",
        })
    })
    app.Run()    // (1)
}

  1. 默认运行在 8080 端口

然后执行 go run demo.go 命令运行代码:

$ go rum demo.go

最后打开浏览器访问 http://localhost:8080/hi