 
      
    | You are here | www.alexedwards.net | ||
| | | | | lanie.dev | |
| | | | | 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. | |
| | | | | aarol.dev | |
| | | | | Anyone who has implemented a simple HTTP 1.1 server can tell you that it is a really simple protocol. Basically, it's a text file that has some specific ... | |
| | | | | alexandrugris.github.io | |
| | | | | These are my first steps in Go, this time learning how to build web services. The post touches handling requests, json serialization, middleware, logging, da... | |
| | | | | blog.michal.pawlik.dev | |
| | | Say you want to start a blog, perhaps even join #100DaysToOffload. There are some questions you need to ask yourself. How do I start? Do I create an account somewhere? Should I build a website? For the starters, you have two options. You can either go for using a platform or for self hosted. Blogging platforms Say you want someone to host the platform for you, then you have some better and worse choices. | ||