프로그래밍/Go (1) 썸네일형 리스트형 [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.Str.. 이전 1 다음