GetStart
要求
安装
前提:
- 安装 Golang
-
设置 Go 工作区
-
下载并安装 gin:
| $ go get -u github.com/gin-gonic/gin
|
- 在代码中引入
| import "github.com/gin-gonic/gin"
import "net/http"
|
开始
先创建一个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)
}
|
- 默认运行在 8080 端口
然后执行 go run demo.go
命令运行代码:
最后打开浏览器访问 http://localhost:8080/hi