finding a bug

This commit is contained in:
Daniel Ledda
2020-11-01 00:33:26 +01:00
parent c9f2d24f43
commit 989392a4cc

View File

@@ -37,12 +37,7 @@ func main() {
}
func viewHandler(w http.ResponseWriter, r *http.Request) {
if r.PostForm != nil {
fmt.Println(r.FormValue("temp"))
}
if r.Form != nil {
fmt.Println(r.FormValue("temp"))
}
fmt.Println("Request received")
_, _ = fmt.Fprint(w, "<h1>Climate Stuff</h1><div>The data will show up here at some stage...</div>")
}