fatih / structs

Utilities for Go structs

Home Page:http://godoc.org/github.com/fatih/structs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can it work when fields start with an lowercase

lionelmessi opened this issue · comments

I tried using lowercase fields with

type photoUploadForm struct {
userid string form:"userid" valid:"Required"
caption string form:"caption" valid:"Required"
}

m := structs.Map(ph)

m is always empty.

ok we need to use name in struct!