Explore >> Select a destination


You are here

alexandrugris.github.io
| | bartlomiejmika.com
2.8 parsecs away

Travel
| | The purpose of this post is to learn how our basic API server can read the body of a request. In addition, we will learn how to use an easy-to-use simple database for beginners called scribble.
| | eltonminetto.dev
3.1 parsecs away

Travel
| | Let's start at the beginning. What is resilience? I like the definition in thispost:
| | coussej.github.io
3.4 parsecs away

Travel
| | Thoughts and Ideas
| | lanie.dev
9.9 parsecs away

Travel
| So you want to parse a form. You have your handler, and you're getting data passed in through the request. 1 2 3 4 5 package example func Login(w http.ResponseWriter, r *http.Request) { // hi (: } The next step is to parse the form on the request. 1 2 3 4 5 6 func Login(w http.ResponseWriter, r *http.Request) { var err error if err := r.