Update controller.go

form获取相同名字的对象数组值
This commit is contained in:
yecrane 2013-06-17 16:12:35 +09:00
parent 67695fac9e
commit 27896c5700
1 changed files with 12 additions and 0 deletions

View File

@ -241,6 +241,18 @@ func (c *Controller) GetString(key string) string {
return c.Input().Get(key)
}
func (c *Controller) GetStrings(key string) []string {
r := c.Ctx.Request;
if r.Form == nil {
return []string{}
}
vs := r.Form[key]
if len(vs) > 0 {
return vs
}
return []string{}
}
func (c *Controller) GetInt(key string) (int64, error) {
return strconv.ParseInt(c.Input().Get(key), 10, 64)
}