Go网络编程-Forms:修订历史

跳到导航 跳到搜索

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2024年2月7日 (星期三)

  • 当前之前 09:302024年2月7日 (三) 09:30BrainBs 讨论 贡献 1,456字节 +1,456 创建页面,内容为“ 这个例子将展示如何模拟一个联系表单,并将消息解析为结构体。 <syntaxhighlight lang="go">// forms.go package main import ( "html/template" "net/http" ) type ContactDetails struct { Email string Subject string Message string } func main() { tmpl := template.Must(template.ParseFiles("forms.html")) http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { if r.Method != http.MethodPost…”