update set cookie example

This commit is contained in:
shlinym 2020-04-05 14:09:21 +08:00
parent 3315353c20
commit 65ac335f9f

View File

@ -2057,7 +2057,7 @@ func main() {
if err != nil { if err != nil {
cookie = "NotSet" cookie = "NotSet"
c.SetCookie("gin_cookie", "test", 3600, "/", "localhost", http.SameSiteLaxMode, false, true) c.SetCookie("gin_cookie", "test", 3600, "/", "localhost", false, true)
} }
fmt.Printf("Cookie value: %s \n", cookie) fmt.Printf("Cookie value: %s \n", cookie)