Gin の使い方
参考ページ
Quick start
インストール
mkdir gin_work && cd gin_work
go mod init gin_work
go get -u github.com/gin-gonic/gin
サンプル
example.go
package main
import "github.com/gin-gonic/gin"
func main() {
rr := gin.Default()
rr.GET("/ping", func(cc *gin.Context) {
cc.JSON(200, gin.H{
"message": "pong",
})
})
rr.Run()
}
サーバーの実行
go run example.go
http://localhost:8080/ping にアクセスする
curl http://localhost:8080/ping
Parameter を使うサンプル
parameters.go
package main
import "github.com/gin-gonic/gin"
import "net/http"
func main() {
router := gin.Default()
// This handler will match /user/john but will not match /user/ or /user
router.GET("/user/:name", func(c *gin.Context) {
name := c.Param("name")
c.String(http.StatusOK, "Hello %s", name)
})
// However, this one will match /user/john/ and also /user/john/send
// If no other routers match /user/john, it will redirect to /user/john/
router.GET("/user/:name/*action", func(c *gin.Context) {
name := c.Param("name")
action := c.Param("action")
message := name + " is " + action
c.String(http.StatusOK, message)
})
// For each matched request Context will hold the route definition
router.POST("/user/:name/*action", func(c *gin.Context) {
// c.FullPath() == "/user/:name/*action" // true
})
router.Run(":8080")
}
サーバーの実行
go run parameters.go
クライアントからアクセス
curl http://localhost:8080/user/john
curl http://localhost:8080/user/john/send
Author And Source
この問題について(Gin の使い方), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/4285f95535b616fd6b28著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .