?id=123&isok=true&ft=1.2&ol[0]=1&ol[1]=2&ul[]=str&ul[]=array&user.Name=astaxie
  1. var id int

  2. this.Ctx.Input.Bind(&id, "id")  //id ==123

  3. var isok bool

  4. this.Ctx.Input.Bind(&isok, "isok")  //isok ==true

  5. var ft float64

  6. this.Ctx.Input.Bind(&ft, "ft")  //ft ==1.2

  7. ol := make([]int, 0, 2)

  8. this.Ctx.Input.Bind(&ol, "ol")  //ol ==[1 2]

  9. ul := make([]string, 0, 2)

  10. this.Ctx.Input.Bind(&ul, "ul")  //ul ==[str array]

  11. user struct{Name}

  12. this.Ctx.Input.Bind(&user, "user")  //user =={Name:"astaxie"}