You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 7 Next »
接口文档:https://godoc.org/github.com/gogf/gf/net/ghttp#Cookie
type Cookie func GetCookie(r *Request) *Cookie func (c *Cookie) Contains(key string) bool func (c *Cookie) Flush() func (c *Cookie) Get(key string, def ...string) string func (c *Cookie) GetSessionId() string func (c *Cookie) Map() map[string]string func (c *Cookie) Remove(key string) func (c *Cookie) RemoveCookie(key, domain, path string) func (c *Cookie) Set(key, value string) func (c *Cookie) SetCookie(key, value, domain, path string, maxAge time.Duration, httpOnly ...bool) func (c *Cookie) SetHttpCookie(httpCookie *http.Cookie) func (c *Cookie) SetSessionId(id string)
任何时候都可以通过*ghttp.Request对象获取到当前请求对应的Cookie对象,因为Cookie和Session都是和请求会话相关,因此都属于ghttp.Request的成员对象,并对外公开。Cookie对象不需要手动Close,请求流程结束后,HTTP Server会自动关闭掉。
*ghttp.Request
Cookie
Session
ghttp.Request
Close
HTTP Server
此外,Cookie中封装了两个SessionId相关的方法:
SessionId
Cookie.GetSessionId()
Cookie.SetSessionId(id string)
在设置Cookie变量的时候可以给定过期时间,该时间为可选参数,默认的Cookie过期时间为一年。
默认的SessionId在Cookie中的存储名称为gfsession。
gfsession
package main import ( "github.com/gogf/gf/frame/g" "github.com/gogf/gf/os/gtime" "github.com/gogf/gf/net/ghttp" ) func main() { s := g.Server() s.BindHandler("/cookie", func(r *ghttp.Request) { datetime := r.Cookie.Get("datetime") r.Cookie.Set("datetime", gtime.Datetime()) r.Response.Write("datetime:", datetime) }) s.SetPort(8199) s.Run() }
执行外层的main.go,可以尝试刷新页面 http://127.0.0.1:8199/cookie ,显示的时间在一直变化。
main.go
对于控制器对象而言,从基类控制器中继承了很多会话相关的对象指针,可以看做alias,可以直接使用,他们都是指向的同一个对象:
type Controller struct { Request *ghttp.Request // 请求数据对象 Response *ghttp.Response // 返回数据对象(r.Response) Server *ghttp.Server // WebServer对象(r.Server) Cookie *ghttp.Cookie // COOKIE操作对象(r.Cookie) Session *ghttp.Session // SESSION操作对象 View *View // 视图对象 }
由于对于Web开发者来讲,Cookie都已经是非常熟悉的组件了,相关API也非常简单,这里便不再赘述。
API