1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-02 09:47:17 +00:00

Add PostValuesAll, PostValues, PostValue shortcut for aio multipart, form data, raw post, query data

This commit is contained in:
Gerasimos Maropoulos
2016-07-28 12:13:54 +03:00
parent 77955c8540
commit f8f6abd906
2 changed files with 64 additions and 0 deletions

View File

@@ -43,6 +43,9 @@ type (
RequestHeader(k string) string
FormValueString(string) string
FormValues(string) []string
PostValuesAll() map[string][]string
PostValues(name string) []string
PostValue(name string) string
SetStatusCode(int)
SetContentType(string)
SetHeader(string, string)