Gin ist ein in Go geschriebenes Web-Framework und bietet den Vorteil einer hohen Leistung.
1. Installation
Verwenden Sie go, um die Gin-Bibliothek herunterzuladen: go get github.com/gin-gonic/gin. Für die allgemeine Verwendung erforderlich >
import "github.com/gin-gonic/gin" import "net/http"
package main import ( "github.com/gin-gonic/gin" "net/http" ) func getQuery(context *gin.Context){ userid := context.Query("userid") username := context.Query("username") context.String(http.StatusOK,userid+" "+username) } func main(){ // 注册一个默认路由器 router := gin.Default() //注册GET处理 router.GET("/user", getQuery) //默认8080端口 router.Run(":8088") }
5 xiaoming
package main import ( "github.com/gin-gonic/gin" "net/http" ) func getParam(context *gin.Context){ userid := context.Param("userid") username := context.Param("username") context.String(http.StatusOK,userid+" "+username) } func main(){ // 注册一个默认路由器 router := gin.Default() //注册GET处理 //router.GET("/user", getQuery) router.GET("/user/:userid/:username",getParam) //默认8080端口 router.Run(":8088") }
5 xiaoming
Das obige ist der detaillierte Inhalt vonWas bedeutet Gin?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!