Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

9 роки тому
123456789101112131415161718192021222324
  1. package rex
  2. import (
  3. "net/http"
  4. "github.com/gorilla/schema"
  5. )
  6. var Schema = schema.NewDecoder()
  7. type Validator interface {
  8. Validate() error
  9. }
  10. // ParseForm parsed the raw query from the URL and updates request.Form,
  11. // decode the from to the given struct with Validator implemented.
  12. func ParseForm(r *http.Request, form Validator) (err error) {
  13. if err = r.ParseForm(); err == nil {
  14. if err = Schema.Decode(form, r.Form); err == nil {
  15. err = form.Validate()
  16. }
  17. }
  18. return
  19. }