我用Go编写了一个简单的Web应用程序,该应用程序需要读取HTTP形式的值(用户名,密码)等。但是,我发现打印时这些值是空的。 len(r.Form)
和len(r.Form["password"])
都返回0。
在尝试读取字段之前,我已在应用程序中调用r.ParseForm()
,并且我正在使用Postman发送请求。在Linux和macOS上都经过测试。
我用来测试的代码是Astaxie golang网络教程中的一些示例代码。我已经附上了Postman request。到目前为止看起来像这样:
package main
import (
"fmt"
"html/template"
"log"
"net/http"
"strings"
"time"
)
func sayhelloName(w http.ResponseWriter, r *http.Request) {
r.ParseForm() //Parse url parameters passed, then parse the response packet for the POST body (request body)
// attention: If you do not call ParseForm method, the following data can not be obtained form
fmt.Println(r.Form) // print information on server side.
fmt.Println("path", r.URL.Path)
fmt.Println("scheme", r.URL.Scheme)
fmt.Println(r.Form["url_long"])
for k, v := range r.Form {
fmt.Println("key:", k)
fmt.Println("val:", strings.Join(v, ""))
}
fmt.Fprintf(w, "Hello astaxie!") // write data to response
}
func login(w http.ResponseWriter, r *http.Request) {
fmt.Println("method:", r.Method) //get request method
if r.Method == "GET" {
t, _ := template.ParseFiles("login.gtpl")
t.Execute(w, nil)
} else {
r.ParseForm()
time.Sleep(3 * time.Second)
// logic part of log in
fmt.Println("username:", len(r.Form))
fmt.Println("password:", len(r.Form["password"]))
}
}
func main() {
http.HandleFunc("/", sayhelloName) // setting router rule
http.HandleFunc("/login", login)
err := http.ListenAndServe(":9090", nil) // setting listening port
if err != nil {
log.Fatal("ListenAndServe: ", err)
}
}
有什么建议下一步呢?
谢谢!
最佳答案
尝试将 postman 请求上的内容类型从form-data
更改为x-www-form-urlencoded
因为根据r.ParseForm()
上的docs,除非它是x-www-form-urlencoded
,否则不会解析正文
关于forms - 进行HTTP表单解析-返回空的slice/empty值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47021914/