要安装Gin,首先要安装Go和配置你的Go工作路径,具体Go的安装方式可以参考这里 a(https://golang.google.cn)[https://golang.google.cn]
接下来,我们看下如何安装Gin
1,可以使用下面的命令安装Gin
$ go get -u github.com/gin-gonic/gin
2,在项目中导入
import “github.com/gin-gonic/gin”
3,下面我们使用一个例子,来快速的开始Gin的入门吧
package main
import “github.com/gin-gonic/gin”
func main() {
r := gin.Default()
r.GET(“/ping”, func(c *gin.Context) {
c.JSON(200, gin.H{
“message”: “pong”,
})
})
r.Run() // listen and serve on 0.0.0.0:8080 (for windows “localhost:8080”)
}
是不是超级简单呀?,你可以安装以上的步骤,开始你的第一个Gin程序。
引用:http://itoocs.com/articledetail/22
有疑问加站长微信联系(非本文作者))