GoLangビルドジンプロジェクト

1.ディレクトリに次の3つのファイルを作成します

2.環境を構成します

 

GOPROXY=https://goproxy.io,direct

3.ginをダウンロードします

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

4.modを初期化します

go mod init example.com/m

5.main.goを作成します

package main

import (
	"github.com/gin-gonic/gin"
	"net/http"
)

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")
}

6.現在のディレクトリ構造

7.実行

go run main.go

8.ブラウザを開いてアクセスします

http:// localhost:8080 /

完了です

 

おすすめ

転載: blog.csdn.net/weixin_43101671/article/details/112966405