Gin是一個go寫的web框架,具有高效能的優點。
一.安裝
使用go下載gin函式庫,命令列輸入:go get github.com/gin-gonic/gin ,一般使用需要的依賴:
import "github.com/gin-gonic/gin" import "net/http"
二:基本應用
1.gin.Context中的Query方法:get的URL傳參
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
2.gin. Context中的Param方法:RESRful風格URL傳參
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") }
補充:/:varname必須匹配對應的,/*varname匹配後面的所有,同時不能用多個,否則編譯報錯
頁面輸出:
5 xiaoming
以上是gin是什麼意思?的詳細內容。更多資訊請關注PHP中文網其他相關文章!