We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gin just added a new interface called BindUnmarshaler that allows types to define a UnmarshalParam method which lets them be used as query parameters.
UnmarshalParam
Implementing this would allow binding KSUID API query params like this:
type queryParams struct { ID KSUID `form:"id"` } route.GET("/test", func(ctx *gin.Context) { var params queryParams{} _ = ctx.BindQuery(¶ms) entity, err := GetEntity(params.ID) ... })
I think all that is necessary is adding this method:
func (i *KSUID) UnmarshalParam(s string) error { return i.UnmarshalText([]byte(s)) }
I'm happy to open a PR for it if that would be helpful.
The text was updated successfully, but these errors were encountered:
Alternatively, adding an UnmarshalJSON method would solve this
UnmarshalJSON
Sorry, something went wrong.
No branches or pull requests
Gin just added a new interface called BindUnmarshaler that allows types to define a
UnmarshalParam
method which lets them be used as query parameters.Implementing this would allow binding KSUID API query params like this:
I think all that is necessary is adding this method:
I'm happy to open a PR for it if that would be helpful.
The text was updated successfully, but these errors were encountered: