• 查询字符串参数

    查询字符串参数

    1. func main() {
    2. router := gin.Default()
    3. // 使用现有的基础请求对象解析查询字符串参数。
    4. // 示例 URL: /welcome?firstname=Jane&lastname=Doe
    5. router.GET("/welcome", func(c *gin.Context) {
    6. firstname := c.DefaultQuery("firstname", "Guest")
    7. lastname := c.Query("lastname") // c.Request.URL.Query().Get("lastname") 的一种快捷方式
    8. c.String(http.StatusOK, "Hello %s %s", firstname, lastname)
    9. })
    10. router.Run(":8080")
    11. }