路径参数

  1. //匹配/user/john这种格式,但不能匹配/user/ 或 /user这种格式
  2. "/user/:name"
  3. c.Param("name")
  4. //既能匹配/user/john/格式也能匹配/user/john/send这种格式
  5. "/user/:name/*action"
  6. c.Param("action")

查询参数

  1. "/welcome?firstname=Jane&lastname=Doe"
  2. c.DefaultQuery("firstname", "Guest") //设置默认值Guest
  3. c.Query("lastname")

表单参数

  1. c.PostForm("message")
  2. c.DefaultPostForm("nick", "anonymous") // 此方法可以设置默认值

表单参数

  1. c.FormFile("file")
  2. c.SaveUploadedFile(file, dst) // 上传文件到指定的路径