//动态路由、路由参数r.PUT("/users/:id", func(c *gin.Context) {id := c.Param("id")c.JSON(http.StatusOK, gin.H{"id": id,})})