PHP小编柚子在这里为大家介绍一个常见的问题——浏览器未保存cookie。在我们日常使用浏览器进行网页访问时,cookie是一种常见的机制,它可以帮助网站记住用户的登录状态、个性化设置
PHP小编柚子在这里为大家介绍一个常见的问题——浏览器未保存cookie。在我们日常使用浏览器进行网页访问时,cookie是一种常见的机制,它可以帮助网站记住用户的登录状态、个性化设置等信息。然而,有时候我们会遇到浏览器未保存cookie的情况,导致登录状态丢失、无法正常浏览网页等问题。那么,为什么会出现这种情况呢?下面就让我们一起来探究一下吧!
尝试了 15648070,15648070 不幸的是没有成功:)
您好,第一次使用 gin 构建 api,我在浏览器上设置 cookie 时遇到一些问题
我的意思是,当在 dev 工具
上查看请求时,我看到了 set-cookie
标头和正确的值,也在该请求中的 cookie
选项卡下我还看到了 cookie
主要问题是它没有保存在我的浏览器上(dev工具
-> application
-> storage
-> cookies
和我的cookie不存在)
后端:
router.use(cors.new(cors.config{
allowmethods: []string{"get", "post", "put", "patch", "delete", "head", "options"},
allowheaders: []string{"origin", "content-length", "content-type"},
maxage: 12 * time.hour,
allowallorigins: true,
allowcredentials: true,
}))
router.post("/users/login", server.loginuser)
func (server *server) loginuser(ctx *gin.context) {
...
ctx.setcookie("access_token", accesstoken, 3600, "/", "localhost", false, true)
ctx.setcookie("refresh_token", refreshtoken, 3600, "/", "localhost", false, true)
ctx.JSON(Http.statusok, gin.h{"ok": true, "payload": rsps})
}
前端:
const login = async () => {
const res = await fetch("http://localhost:3000/users/login", {
method: "POST",
body: JSON.stringify({ username, password }),
});
const data = await res.json();
console.log(data);
};
const handleFormSubmit = (e) => {
e.preventDefault();
login();
};
return (
--结束END--
本文标题: 浏览器未保存cookie
本文链接: https://lsjlt.com/news/562418.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0