본문 바로가기

프로그래밍/Go

[gin] url path에서 parameter 얻기

- 예시코드

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

    router.GET("/user/:name", func(c *gin.Context) {
        name := c.Param("name")
        c.String(http.StatusOK, "Hello %s", name)
    })

    // /user/john/ 됩니다 /user/john/send 됩니다
    // /user/john 이 없다면 /user/john/ 로 redirect 됩니다.
    router.GET("/user/:name/*action", func(c *gin.Context) {
        name := c.Param("name")
        action := c.Param("action")
        message := name + " is " + action
        c.String(http.StatusOK, message)
    })

    router.Run(":8080")
}

- 결과