0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 20:50:24 +00:00

Update the body reading chapter

This commit is contained in:
Loïc Hoguin 2016-08-25 17:40:37 +02:00
parent 7839f13671
commit bee1320700
2 changed files with 80 additions and 101 deletions

View file

@ -258,7 +258,8 @@ QsVals = cowboy_req:parse_qs(Req),
Cowboy will only parse the query string, and not do any
transformation. This function may therefore return duplicates,
or parameter names without an associated value.
or parameter names without an associated value. The order of
the list returned is undefined.
When a query string is `key=1&key=2`, the list returned will
contain two parameters of name `key`.