Get form post value in Go
Practically almost every web page out there will ask you to fill a form to progress further. Most of these forms will post data to the server for further processing. Go has the capability to capture the posted form data as well. In this tutorial, we will show a simple function to capture the posted form data with
r.FormValue("form_data")
function
In the client browser:
<form action="http://website/process_form_data" method="post">
<input type="text" name="form_data" id="form_data" >
</form>
At the Go server :
func process_form_data(w http.ResponseWriter, r *http.Request) {
if r.Method == "POST" {
form_data := r.FormValue("form_data")
}
}
For more information, please refer to
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+17.9k Golang : Detect (OS) Operating System
+9.9k Swift : Convert (cast) Int to String ?
+4.1k Golang : Load ASN1 encoded DSA public key PEM file example
+2.8k Golang : Check if one string(rune) is permutation of another string(rune)
+3.4k Golang : Null and nil value
+13.3k Golang : Upload big file (larger than 100MB) to AWS S3 with multipart upload
+4.8k Golang : Compare files modify date example
+13.3k Golang : Get path name to current directory or folder
+2.6k Golang : How to verify input is rune?
+13.7k Golang : Convert file content into array of bytes
+6.2k Android Studio : Highlight ImageButton when pressed on example
+6.9k Golang : Simple File Server