Chrome 不在本地主机中保存 cookie

Chrome not saving cookies in localhost

我知道之前有人问过这个问题,但是 none 的解决方案名为工作。我正在为我的 webapp 使用 Spring boot 和 React,并且需要在网站上设置 cookie。我正在使用 Google Chrome 进行开发和测试。当我从服务器获得响应时,cookie 存在并且可见。但是它没有保存在应用程序> Cookies 中。

现代的解决方案是什么?最近过去的人提问都没有得到回复。

您使用的是 HttpOnly cookies 吗?如果是这样,您需要 ensure you have the withCredentials property set.

检查您的 cookie 是否设置为仅在域安全时保存。保存 cookie 时,请记住在发送请求时使用 withCredentials 选项。如果您发布来自服务器的示例响应,尤其是 headers.

,这也会有所帮助