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

如何在 Go 中检索 cookie?

如何在 Go 中检索 cookie?

Go
森栏 2021-06-29 17:09:15
我在undefined: msg以tmpl.Execute. 你应该如何在 Go 中检索 cookie?func contact(w http.ResponseWriter, r *http.Request) {    if r.Method == "POST" {        r.ParseForm()        for k, v := range r.Form {            fmt.Println("k:", k, "v:", v)        }        http.SetCookie(w, &http.Cookie{Name: "msg", Value: "Thanks"})        http.Redirect(w, r, "/contact/", http.StatusFound)    }    if msg, err := r.Cookie("msg"); err != nil {        msg := ""    }    tmpl, _ := template.ParseFiles("templates/contact.tmpl")    tmpl.Execute(w, map[string]string{"Msg": msg})}
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 171 浏览
慕课专栏
更多

添加回答

举报

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