安装

  1. go get -u github.com/gin-gonic/gin

使用

  1. import "github.com/gin-gonic/gin"
  2. import "net/http"

例子:输出”hello world”

  1. package main
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "net/http"
  5. )
  6. func main() {
  7. // 1、创建路由
  8. g := gin.Default()
  9. // 2、绑定路由规则,执行视图函数
  10. g.GET("/", func(c *gin.Context) {
  11. // 3、返回值
  12. c.String(http.StatusOK,"hello world")
  13. })
  14. // 4、开启监听
  15. g.Run(":8000")
  16. }

image.png