Registry / web-framework / iris-contrib-schema

iris-contrib-schema

JSON →
library0.0.6gogounverified

Package schema provides schema-based form parsing and validation for the Iris web framework.

go get github.com/iris-contrib/schema
INSTALL
IMPORT
SIG · IRIS-CONTRIB-SCHEM
I
iris-contrib-schema
web-frameworkgov0.0.6
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

schema
github.com/iris-contrib/schema

Decode form values into a struct using schema tags.

package main import ( "fmt" "github.com/iris-contrib/schema" ) func main() { type User struct { Name string `schema:"name"` Age int `schema:"age"` } var u User values := map[string][]string{"name": {"Alice"}, "age": {"30"}} schema.NewDecoder().Decode(&u, values) fmt.Printf("%+v\n", u) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.0.6latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
iris-contrib-schema — go get iris-contrib-schema · libregistry