网络编程
位置:首页>> 网络编程>> Go语言>> 使用go gin来操作cookie的讲解

使用go gin来操作cookie的讲解

作者:stpeace  发布时间:2023-09-12 14:21:49 

标签:go,gin,cookie

准确地说, 这个标题是有问题的, go gin只能给浏览器返回操作cookie的指令, 真正执行cookie操作的是浏览器。 但广泛地来讲, 说go gin操作cookie, 也是可以的(间接操作)

来看go gin代码:


package main
import (
 "github.com/gin-gonic/gin"
)
func main() {
 router := gin.Default();
 router.GET("/read_cookie", func(context *gin.Context) {
   val, _ := context.Cookie("name")
   context.String(200, "Cookie:%s", val)
 })
 router.GET("/write_cookie", func(context *gin.Context) {
   context.SetCookie("name", "Shimin Li", 10, "/", "localhost", false, true)
 })
 router.GET("/clear_cookie", func(context *gin.Context) {
   context.SetCookie("name", "Shimin Li", -1, "/", "localhost", false, true)
 })
 router.Run(":8080")
}

开启服务。浏览器端执行读取、写入、清除的操作分别是:

http://localhost:8080/read_cookie

http://localhost:8080/write_cookie

http://localhost:8080/clear_cookie

自己玩了一下, OK.

不多说。

来源:https://blog.csdn.net/stpeace/article/details/82726139

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com