登录
首页 >  Golang >  Go问答

使用 net/http 设置 cookie

来源:Golang技术栈

时间:2023-04-11 06:49:10 485浏览 收藏

偷偷努力,悄无声息地变强,然后惊艳所有人!哈哈,小伙伴们又来学习啦~今天我将给大家介绍《使用 net/http 设置 cookie》,这篇文章主要会讲到golang等等知识点,不知道大家对其都有多少了解,下面我们就一起来看一吧!当然,非常希望大家能多多评论,给出合理的建议,我们一起学习,一起进步!

问题内容

我正在尝试使用 Go 的 net/http 包设置 cookie。我有:

package main

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

func indexHandler(w http.ResponseWriter, req *http.Request) {
    expire := time.Now().AddDate(0, 0, 1)
    cookie := http.Cookie{"test", "tcookie", "/", "www.domain.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("/", indexHandler)
    http.ListenAndServe(":80", nil)
}

我尝试用“cookies”搜索“Golang”,但没有得到任何好的结果。如果有人能指出我正确的方向,将不胜感激。

正确答案

我不是围棋专家,但我认为您正在根据请求设置 cookie,不是吗?您可能希望在响应中设置它。net/http中有一个setCookie函数。这可能会有所帮助: http: //golang.org/pkg/net/http/#SetCookie

func SetCookie(w ResponseWriter, cookie *Cookie)

好了,本文到此结束,带大家了解了《使用 net/http 设置 cookie》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>