3

我想定义一条路线

/user/{userid}/status

如何定义这种路由并拦截处理程序中的用户 ID。像这样的东西

 r.GET("/user/{userid}/status", userStatus)

在这种情况下,如何读取我的 Go 代码中的 userid 变量?

4

1 回答 1

13

您可以使用userid := c.Param("userid"),就像这个工作示例:

package main

import (
    "fmt"
    "net/http"

    "github.com/gin-gonic/gin"
)

func main() {
    router := gin.Default()

    router.GET("/user/:userid/status", func(c *gin.Context) {
        userid := c.Param("userid") 
        message := "userid is " + userid
        c.String(http.StatusOK, message)
        fmt.Println(message)
    })

    router.Run(":8080")
}
于 2016-09-14T11:48:54.763 回答