基本介绍

接口文档:https://godoc.org/github.com/gogf/gf/net/ghttp#Cookie

  1. type Cookie
  2. func GetCookie(r *Request) *Cookie
  3. func (c *Cookie) Contains(key string) bool
  4. func (c *Cookie) Flush()
  5. func (c *Cookie) Get(key string, def ...string) string
  6. func (c *Cookie) GetSessionId() string
  7. func (c *Cookie) Map() map[string]string
  8. func (c *Cookie) Remove(key string)
  9. func (c *Cookie) RemoveCookie(key, domain, path string)
  10. func (c *Cookie) Set(key, value string)
  11. func (c *Cookie) SetCookie(key, value, domain, path string, maxAge time.Duration, httpOnly ...bool)
  12. func (c *Cookie) SetHttpCookie(httpCookie *http.Cookie)
  13. func (c *Cookie) SetSessionId(id string)

任何时候都可以通过*ghttp.Request对象获取到当前请求对应的Cookie对象,因为CookieSession都是和请求会话相关,因此都属于ghttp.Request的成员对象,并对外公开。Cookie对象不需要手动Close,请求流程结束后,HTTP Server会自动关闭掉。

此外,Cookie中封装了两个SessionId相关的方法:

  1. Cookie.GetSessionId()用于获取当前请求提交的SessionId,每个请求的SessionId都是唯一的,并且伴随整个请求流程,该值可能为空。
  2. Cookie.SetSessionId(id string)用于自定义设置SessionIdCookie中,返回给客户端(往往是浏览器)存储,随后客户端每一次请求在Cookie中可带上该SessionId

在设置Cookie变量的时候可以给定过期时间,该时间为可选参数,默认的Cookie过期时间为一年。

默认的SessionIdCookie中的存储名称为gfsession

使用示例

  1. package main
  2. import (
  3. "github.com/gogf/gf/frame/g"
  4. "github.com/gogf/gf/os/gtime"
  5. "github.com/gogf/gf/net/ghttp"
  6. )
  7. func main() {
  8. s := g.Server()
  9. s.BindHandler("/cookie", func(r *ghttp.Request) {
  10. datetime := r.Cookie.Get("datetime")
  11. r.Cookie.Set("datetime", gtime.Datetime())
  12. r.Response.Write("datetime:", datetime)
  13. })
  14. s.SetPort(8199)
  15. s.Run()
  16. }

执行外层的main.go,可以尝试刷新页面 http://127.0.0.1:8199/cookie ,显示的时间在一直变化。

对于控制器对象而言,从基类控制器中继承了很多会话相关的对象指针,可以看做alias,可以直接使用,他们都是指向的同一个对象:

  1. type Controller struct {
  2. Request *ghttp.Request // 请求数据对象
  3. Response *ghttp.Response // 返回数据对象(r.Response)
  4. Server *ghttp.Server // WebServer对象(r.Server)
  5. Cookie *ghttp.Cookie // COOKIE操作对象(r.Cookie)
  6. Session *ghttp.Session // SESSION操作对象
  7. View *View // 视图对象
  8. }

由于对于Web开发者来讲,Cookie都已经是非常熟悉的组件了,相关API也非常简单,这里便不再赘述。

Cookie会话过期

Cookie的有效期默认是1年,如果我们期望Cookie随着用户的浏览会话过期,像这样:

Cookie - 图1

那么我们仅需要通过SetCookie来设置Cookie键值对并将maxAge参数设置为0即可。像这样:

  1. r.Cookie.SetCookie("MyCookieKey", "MyCookieValue", "", "/", 0)

Content Menu