在浏览器中设置Cookie:Golang

时间:2013-06-13 11:34:51

标签: google-app-engine cookies go

作为Golang的新手,尝试在浏览器设置cookie, 有简单的基本代码,但它根本不起作用做了一些谷歌搜索&发现了一些stackoverflow ex。但仍然没有采取正确的方式。

创建了一个简单的hello.go

package main

import "io"
import "net/http"
import "time"

func handler(w http.ResponseWriter, req *http.Request) {
    expire := time.Now().AddDate(0, 0, 1)
    cookie := http.Cookie{"test", "tcookie", "/", "www.dummy.com", expire, expire.Format(time.UnixDate), 86400, true, true, "test=tcookie", []string{"test=tcookie"}}
    req.AddCookie(&cookie)
    io.WriteString(w, "Hello world!")
}

func main() {
    http.HandleFunc("/", handler)
}

但正如预期的那样,我面临的错误就像\hello.go:9:15: composite struct literal net/http.Cookie with untagged fields

任何人都可以建议我或给我一些基本的例子(详细说明)来设置cookie。

很少搜索SO并找到.. Setting Cookies in Golang (net/http)但无法正常接听..

感谢。

2 个答案:

答案 0 :(得分:6)

cookie := http.Cookie{"test", "tcookie", "/", "www.dummy.com", expire, expire.Format(time.UnixDate), 86400, true, true, "test=tcookie", []string{"test=tcookie"}}

应该是这样的:

cookie := &http.Cookie{Name:"test", Value:"tcookie", Expires:time.Now().Add(356*24*time.Hour), HttpOnly:true}

之后

更改

req.AddCookie(&cookie)

http.SetCookie(w, cookie)

最后因为您的应用程序在Google App Engine上运行了更改:

func main()

func init()

答案 1 :(得分:3)

在您链接到它的问题中,基本上说要使用net/http中的此函数:

func SetCookie(w ResponseWriter, cookie *Cookie)

所以在你的例子中而不是写

req.AddCookie(&cookie)

你应该写这个

http.SetCookie(w, &cookie)