go-querystring icon indicating copy to clipboard operation
go-querystring copied to clipboard

go-querystring is Go library for encoding structs into URL query strings.

Results 27 go-querystring issues
Sort by recently updated
recently updated
newest added

As you showed in the demo, for a struct, the encoded value is “user[name]=acme&user[addr][postcode]=1234&user[addr][city]=SFO”, If I don't want to use "[]" to split, but ".", like“user.name=acme&user.addr.postcode=1234&user.addr.city=SFO”,Is there a way to...

I plan to fix the issue described below for encoding nested struct arrays. Currently this structure ``` go type Nested struct { A string `url:"theA,omitempty"` B string `url:"theB,omitempty"` } type...

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2 to 3.2.0. Release notes Sourced from actions/setup-go's releases. Support for caching dependency files and compiler's build outputs This release introduces support for caching dependency files and...

dependencies
github_actions

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 2 to 3.2.0. Release notes Sourced from golangci/golangci-lint-action's releases. v3.2.0 What's Changed Expire cache periodically to avoid unbounded size by @​ezimanyi in golangci/golangci-lint-action#466 misc docs: update version...

dependencies
github_actions

Bumps [github.com/google/go-cmp](https://github.com/google/go-cmp) from 0.5.6 to 0.5.8. Release notes Sourced from github.com/google/go-cmp's releases. v0.5.8 Reporter changes: (#293) Fix printing of types in reporter output for interface and pointer types (#294) Use...

dependencies
go

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2.1.0 to 3.1.0. Release notes Sourced from codecov/codecov-action's releases. v3.1.0 3.1.0 Features #699 Incorporate xcode arguments for the Codecov uploader Dependencies #694 build(deps-dev): bump @​vercel/ncc from 0.33.3...

dependencies
github_actions

Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. Release notes Sourced from actions/cache's releases. v3.0.1 Added support for caching from GHES 3.5. Fixed download issue for files > 2GB during restore. v3.0.0...

dependencies
github_actions

[ggicci/httpin](https://github.com/ggicci/httpin) helps decoding an HTTP request to a custom struct by binding data with querystring (query params), HTTP headers, form data, JSON/XML payloads, URL path params, and file uploads (multipart/form-data).

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. Release notes Sourced from actions/checkout's releases. v3.0.0 Update default runtime to node16 v2.4.0 Convert SSH URLs like org-<ORG_ID>@github.com: to https://github.com/ - pr v2.3.5 Update...

dependencies
github_actions

We use [Gin](https://github.com/gin-gonic/gin), and we're looking at using this library. Gin provides [a `BindQuery` method](https://github.com/gin-gonic/gin/blob/08b52e5394099db4c2399357e060619c1545083e/context.go#L575), which decodes query params from a request into a struct, so long as the incoming...