PostFormMap returns a map for a given form key.
(key string)
| 658 | |
| 659 | // PostFormMap returns a map for a given form key. |
| 660 | func (c *Context) PostFormMap(key string) (dicts map[string]string) { |
| 661 | dicts, _ = c.GetPostFormMap(key) |
| 662 | return |
| 663 | } |
| 664 | |
| 665 | // GetPostFormMap returns a map for a given form key, plus a boolean value |
| 666 | // whether at least one value exists for the given key. |