6 ms·
> are there any good form validation libraries for Go? Here are a couple: http://www.gorillatoolkit.org/pkg/schema http://www.gorillatoolkit.org/pkg/schema h
by murz 12y ago
> are there any good form validation libraries for Go?
Here are a couple:
http://www.gorillatoolkit.org/pkg/schema http://www.gorillatoolkit.org/pkg/schema
http://godoc.org/github.com/mccoyst/validate http://godoc.org/github.com/mccoyst/validate
There are also some bigger web framework projects that include validation, Revel is one: http://revel.github.io/manual/validation.html http://revel.github.io/manual/validation.html
- aaron-lebo 12y agoschema is not a validation library, it just turns HTTP forms into Go structs. Validate uses tags or maps (not a huge issue, granted). The Revel one does look nice, though. Thanks.