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
+7.7k Golang : Error reading timestamp with GORM or SQL driver
+27.9k Golang : Decode/unmarshal unknown JSON data type with map[string]interface
+9.7k PHP : Get coordinates latitude/longitude from string
+12.6k Golang : Remove or trim extra comma from CSV
+10.4k Golang : Meaning of omitempty in struct's field tag
+11.9k Golang : Determine if time variables have same calendar day
+9.9k Golang : Turn string or text file into slice example
+5.2k PHP : See installed compiled-in-modules
+7.4k Golang : Check to see if *File is a file or directory
+12.6k Golang : Exit, terminating or aborting a program
+8.3k Useful methods to access blocked websites