在Golang中设置Cookie(net/http)

前端之家收集整理的这篇文章主要介绍了在Golang中设置Cookie(net/http)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图设置cookie与Golang的net / http。我有
package main

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

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

func main() {
    http.HandleFunc("/",indexHandler)
    http.ListenAndServe(":80",nil)
}

我试着用“饼干”搜索“Golang”,但没有得到任何好的结果。如果任何人可以指出我的方向正确,将非常感谢。

谢谢。

我不是一个Go专家,但我想你是设置cookie的请求,不是你。您可能想在响应上设置它。 net / http中有一个setCookie函数。这可能有助于:
http://golang.org/pkg/net/http/#SetCookie
func SetCookie(w ResponseWriter,cookie *Cookie)
原文链接:https://www.f2er.com/go/188043.html

猜你在找的Go相关文章