codecamp

GoFrame HTTPClient-自定义Cookie

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

方法列表:

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

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

服务端

package main

import (
    "github.com/gogf/gf/v2/frame/g"
    "github.com/gogf/gf/v2/net/ghttp"
)

func main() {
    s := g.Server()
    s.BindHandler("/", func(r *ghttp.Request){
        r.Response.Write(r.Cookie.Map())
    })
    s.SetPort(8199)
    s.Run()
}

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

客户端

  • 使用​SetCookie​方法

package main

import (
	"fmt"

	"github.com/gogf/gf/v2/frame/g"
	"github.com/gogf/gf/v2/os/gctx"
)

func main() {
	c := g.Client()
	c.SetCookie("name", "john")
	c.SetCookie("score", "100")
	if r, e := c.Get(gctx.New(), "http://127.0.0.1:8199/"); e != nil {
		panic(e)
	} else {
		fmt.Println(r.ReadAllString())
	}
}

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

  • 使用​SetCookieMap​方法

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

package main

import (
	"fmt"
	
	"github.com/gogf/gf/v2/frame/g"
	"github.com/gogf/gf/v2/os/gctx"
)

func main() {
	c := g.Client()
	c.SetCookieMap(g.MapStrStr{
		"name":  "john",
		"score": "100",
	})
	if r, e := c.Get(gctx.New(), "http://127.0.0.1:8199/"); e != nil {
		panic(e)
	} else {
		fmt.Println(r.ReadAllString())
	}
}

  • 执行结果

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

map[name:john score:100]

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


GoFrame HTTPClient-文件上传
GoFrame HTTPClient-自定义Header
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

GoFrame 核心组件

GoFrame 核心组件-数据库ORM

GoFrame 模块列表

GoFrame 模块列表-单元测试

GoFrame 模块列表-功能调试

GoFrame WEB服务开发

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }