We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e40776 commit 0ac5fccCopy full SHA for 0ac5fcc
examples/mtest/main.go
@@ -37,6 +37,9 @@ func helloworld(w http.ResponseWriter, r *http.Request) {
37
var qs url.Values
38
if r.URL != nil {
39
qs, err = url.ParseQuery(r.URL.RawQuery)
40
+ if err != nil {
41
+ log.Println("url.ParseQuery err:", err)
42
+ }
43
}
44
if qs == nil {
45
qs = make(url.Values)
0 commit comments