GIN-接口範例2-請求路徑中的參數

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

	// 這段處理程序會捕獲 /user/john 可是不會捕獲 /user/ 或者/user
	router.GET("/user/:name", func(c *gin.Context) {
		name := c.Param("name")
		c.String(http.StatusOK, "Hello %s", name)
	})

	// 這段會捕獲 /user/john/ 和 /user/john/send
	// 若是沒有設定router去捕獲 /user/john, 它將自動跳轉到 /user/john/
	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")
}
相關文章
相關標籤/搜索