You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would be great, of binder would support to bind a query parameter to an struct.
Example:
type query struct {
a struct {
a string
b string
c string
d string
} `query:"a"`
}
and a[a]=b would map to query.a.a. This would be helpful, if my own application includes structs from 3rd party vendors, where I cant attach additional query metadata.
The text was updated successfully, but these errors were encountered:
Hi there!
I would be great, of binder would support to bind a query parameter to an struct.
Example:
and
a[a]=b
would map toquery.a.a
. This would be helpful, if my own application includes structs from 3rd party vendors, where I cant attach additionalquery
metadata.The text was updated successfully, but these errors were encountered: