我的测试处理程序代码在这里:
func defineHandler(w http.ResponseWriter, r *http.Request) {
a := strconv.ParseInt(r.FormValue("aRows")[0:], 10, 64);
b := r.FormValue("aRows");
fmt.Fprintf(w, "aRows is: %s", b);
}
编译期间返回的错误是:“单值上下文中的多值 strconv.ParseInt()”
我相信这与 FormValue 中的信息格式有关,我只是不知道如何缓解这种情况。