mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 13:00:54 +00:00
commit
6a260ca76d
@ -261,6 +261,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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user