1创建项目
2022年6月14日
命令
//创建项目目录
mkdir 1创建项目
//进入目录
cd 1创建项目
//初始化项目
go mod init a
//创建go文件
type NUL > main.go
//编写代码
//安装依赖
go mod tidy
//运行
go run main.go
//浏览器打开
http://127.0.0.1:8000/
代码
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")
}