1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-05 05:50:18 +00:00
This commit is contained in:
astaxie
2013-11-26 16:47:50 +08:00
parent fbd1c3f8b0
commit 54fb49ed95
4 changed files with 159 additions and 63 deletions

View File

@ -139,6 +139,7 @@ func (input *BeegoInput) Param(key string) string {
}
func (input *BeegoInput) Query(key string) string {
input.req.ParseForm()
return input.req.Form.Get(key)
}