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
I started using this for a PHP endpoint that only accepts "arrays" as comma-separated items instead of multiple instances of the same parameter.
So currently, given a type T, []string{"a", "b"} turns into: ?t=a&t=b.
T
[]string{"a", "b"}
?t=a&t=b
But it would be great to have the option of turning this into: ?t=a,b.
?t=a,b
I can submit a PR for this as I plan to fork and implement this for my own usage anyway.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I started using this for a PHP endpoint that only accepts "arrays" as comma-separated items instead of multiple instances of the same parameter.
So currently, given a type
T
,[]string{"a", "b"}
turns into:?t=a&t=b
.But it would be great to have the option of turning this into:
?t=a,b
.I can submit a PR for this as I plan to fork and implement this for my own usage anyway.
The text was updated successfully, but these errors were encountered: