PostFormArray returns a slice of strings for a given form key. The length of the slice depends on the number of params with the given key.
(key string)
| 631 | // PostFormArray returns a slice of strings for a given form key. |
| 632 | // The length of the slice depends on the number of params with the given key. |
| 633 | func (c *Context) PostFormArray(key string) (values []string) { |
| 634 | values, _ = c.GetPostFormArray(key) |
| 635 | return |
| 636 | } |
| 637 | |
| 638 | func (c *Context) initFormCache() { |
| 639 | if c.formCache == nil { |