Skip to content

v5.1.1

Compare
Choose a tag to compare
@xgfone xgfone released this 23 Nov 07:45
· 20 commits to master since this release
  • Fixed:
    • BindURLValues supports the unexported embedded anonymous struct, for example, #4
      type person struct {
           Name string `query:"name" form:"name"`
           Age  int    `query:"age"  form:"age"`
      }
      
      type Student struct {
           person
      
           School string `query:"school" form:"school"`
           Grade  int    `query:"grade"  form:"grade"`
      }