1-简介

原文地址

安装

要安装Gin软件包,您需要安装Go并首先设置Go工作区。

1,首先需要安装Go(需要1.10+版本),然后可以使用下面的Go命令安装Gin。

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

2,将其导入您的代码中:

1
import "github.com/gin-gonic/gin"

3,(可选)导入net/http。例如,如果使用常量,则需要这样做http.StatusOK

1
import "net/http"

hello word

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main

import (
"net/http"

"github.com/gin-gonic/gin"
)

func main() {
// 1.创建路由
r := gin.Default()
// 2.绑定路由规则,执行的函数
// gin.Context,封装了request和response
r.GET("/", func(c *gin.Context) {
c.String(http.StatusOK, "hello World!")
})
// 3.监听端口,默认在8080
// Run("里面不指定端口号默认为8080")
r.Run(":8000")
}
0%