HTTP客户端发起请求时可以自定义发送给服务端的Cookie内容,该特性使用SetCookie*相关方法实现。

方法列表:

  1. func (c *Client) SetCookie(key, value string) *Client
  2. func (c *Client) SetCookieMap(m map[string]string) *Client

我们来看一个客户端自定义Cookie的示例。

服务端

  1. package main
  2. import (
  3. "github.com/gogf/gf/v2/frame/g"
  4. "github.com/gogf/gf/v2/net/ghttp"
  5. )
  6. func main() {
  7. s := g.Server()
  8. s.BindHandler("/", func(r *ghttp.Request){
  9. r.Response.Write(r.Cookie.Map())
  10. })
  11. s.SetPort(8199)
  12. s.Run()
  13. }

由于是作为示例,服务端的逻辑很简单,直接将接收到的Cookie参数全部返回给客户端。

客户端

  1. 使用SetCookie方法

    1. package main
    2. import (
    3. "fmt"
    4. "github.com/gogf/gf/v2/frame/g"
    5. "github.com/gogf/gf/v2/os/gctx"
    6. )
    7. func main() {
    8. c := g.Client()
    9. c.SetCookie("name", "john")
    10. c.SetCookie("score", "100")
    11. if r, e := c.Get(gctx.New(), "http://127.0.0.1:8199/"); e != nil {
    12. panic(e)
    13. } else {
    14. fmt.Println(r.ReadAllString())
    15. }
    16. }

    通过g.Client()创建一个自定义的HTTP请求客户端对象,并通过c.SetCookie方法设置自定义的Cookie,这里我们设置了两个示例用的Cookie参数,一个name,一个score

  2. 使用SetCookieMap方法

    这个方法更加简单,可以批量设置Cookie键值对。

    1. package main
    2. import (
    3. "fmt"
    4. "github.com/gogf/gf/v2/frame/g"
    5. "github.com/gogf/gf/v2/os/gctx"
    6. )
    7. func main() {
    8. c := g.Client()
    9. c.SetCookieMap(g.MapStrStr{
    10. "name": "john",
    11. "score": "100",
    12. })
    13. if r, e := c.Get(gctx.New(), "http://127.0.0.1:8199/"); e != nil {
    14. panic(e)
    15. } else {
    16. fmt.Println(r.ReadAllString())
    17. }
    18. }
  3. 执行结果

    客户端代码执行后,终端将会打印出服务端的返回结果,如下:

    1. map[name:john score:100]

    可以看到,服务端已经接收到了客户端自定义的Cookie参数。