QueryArray returns a slice of strings for a given query key. The length of the slice depends on the number of params with the given key.
(key string)
| 561 | // QueryArray returns a slice of strings for a given query key. |
| 562 | // The length of the slice depends on the number of params with the given key. |
| 563 | func (c *Context) QueryArray(key string) (values []string) { |
| 564 | values, _ = c.GetQueryArray(key) |
| 565 | return |
| 566 | } |
| 567 | |
| 568 | func (c *Context) initQueryCache() { |
| 569 | if c.queryCache == nil { |