Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct parameter name #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion section03/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The `http.Request` type has a method `FormValue` with the following docs:

FormValue returns the first value for the named component of the query. POST and PUT body parameters take precedence over URL query string values. FormValue calls ParseMultipartForm and ParseForm if necessary and ignores any errors returned by these functions. If key is not present, FormValue returns the empty string. To access multiple values of the same key, call ParseForm and then inspect Request.Form directly.

That's easy! So if we want to obtain the value of a parameter `q` in the URL `/hello?msg=world`
That's easy! So if we want to obtain the value of a parameter `name` in the URL `/hello?name=francesc`
we can write the next program.

[embedmd]:# (examples/handlers/main.go /func paramHandler/ /^}/)
Expand Down