mirror of https://github.com/gin-gonic/gin.git
Updates documentation
This commit is contained in:
parent
4c1447bc29
commit
d209329891
|
@ -190,7 +190,7 @@ func (c *Context) MustGet(key string) interface{} {
|
||||||
/************ INPUT DATA ************/
|
/************ INPUT DATA ************/
|
||||||
/************************************/
|
/************************************/
|
||||||
|
|
||||||
/** Shortcut for c.Request.FormValue(key) */
|
/** Shortcut for c.Request.URL.Query().Get(key) */
|
||||||
func (c *Context) Query(key string) (va string) {
|
func (c *Context) Query(key string) (va string) {
|
||||||
va, _ = c.query(key)
|
va, _ = c.query(key)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue