gin中获取查询字符串参数

时间:2022-01-03 12:41:16
package main

import (
"github.com/gin-gonic/gin"
"net/http"
) func main() {
r := gin.Default()
r.GET("/", func(context *gin.Context) {
id := context.Query("id") // context.Request.URL.Query().Get("id") 的一种快捷方式
name := context.DefaultQuery("name", "默认值")
context.String(http.StatusOK, "id=%s, name=%s", id, name)
})
r.Run()
}