为了账号安全,请及时绑定邮箱和手机立即绑定

处理 HTML 表单数据

处理 HTML 表单数据

Go
ITMISS 2021-09-21 22:49:37
我无法从 HTML 表单中获取数据。该模板显示在 localhost:3000,我提交并被带到 localhost:3000/results,结果显示“404 页面未找到”。URL 不包括任何表单字段。package mainimport (    "html/template"    "net/http"    "github.com/go-martini/martini")func main() {    m := martini.Classic()    m.Get("/", func(res http.ResponseWriter, req *http.Request) { // res and req are injected by Martini        t, _ := template.ParseFiles("form.gtpl")        t.Execute(res, nil)    })    m.Get("/results", func(r *http.Request) string {        text := r.FormValue("text")        return text    })    m.Run()}模板是:form.gtpl<html><head><title>Title Here</title></head><body bgcolor="#E6E6FA"><h1>Header Here</h1><form action="/results" method="POST">    Date: <input type="text" name="dated" size="10" value="01/12/2015">            Triggers: <input type="text" name="triggers" size="100" value="Trigger1|Trigger2"><br><br>    <textarea name ="text" rows="20" cols="150">random text here</textarea>    <input autofocus type="submit" value="Submit"></form></body></html>
查看完整描述

2 回答

?
倚天杖

TA贡献1828条经验 获得超3个赞

请注意,您在表单中指定了method="POST",但在服务器代码中却指定了m.Get("/results",...)。那条线应该是m.Post("/results",...)。马天尼试图将请求路由但没有定义POST /resultsGET /results


查看完整回答
反对 回复 2021-09-21
  • 2 回答
  • 0 关注
  • 194 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信