Go设置、获取和删除Cookie

Go操作Cookie
// A Cookie represents an HTTP cookie as sent in the Set-Cookie header of an
// HTTP response or the Cookie header of an HTTP request.
//
// See https://tools.ietf.org/html/rfc6265 for details.
type Cookie struct {
	Name  string
	Value string

	Path       string    // optional
	Domain     string    // optional
	Expires    time.Time // optional
	RawExpires string    // for reading cookies only

	// MaxAge=0 means no 'Max-Age' attribute specified.
	// MaxAge<0 means delete cookie now, equivalently 'Max-Age: 0'
	// MaxAge>0 means Max-Age attribute present and given in seconds
	MaxAge   int
	Secure   bool
	HttpOnly bool
	SameSite SameSite
	Raw      string
	Unparsed []string // Raw text of unparsed attribute-value pairs
}
  • 设置cookie
func SetCookie(c *gin.Context, request *model.LoginRequest) {
	cookie := http.Cookie{
		Name:     "cookie_" + request.Username,
		Value:    request.Password,
		Path:     "/auth/login",
		Secure:   false,
		HttpOnly: true,
	}
	http.SetCookie(c.Writer, &cookie)
}
  • 获取Cookie
func GetCookie(c *gin.Context, request *model.LoginRequest) *http.Cookie {
	cookie, _ := c.Request.Cookie("cookie_" + request.Username)
	return cookie
}
  • 删除Cookie
func DeleteCookie(c *gin.Context, request *model.LoginRequest) {
	cookie := http.Cookie{
		Name:     "cookie_" + request.Username,
		Value:    request.Password,
		Path:     "/auth/login",
		Secure:   false,
		HttpOnly: true,
		MaxAge:   -1,
	}
	http.SetCookie(c.Writer, &cookie)
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值