如何解决 Django 2.0 应用程序中的 "Cookie csrftoken will be soon rejected because it has the sameSite attribute set to none" 警告?

How can I solve the "Cookie csrftoken will be soon rejected because it has the sameSite attribute set to none" warning on my Django 2.0 application?

我使用的是 2.0 版,我刚刚在我的 firefox 开发者工具上注意到这条消息:

Cookie “csrftoken” will be soon rejected because it has the “sameSite” attribute set to “none” or an invalid value.

django 2.0 似乎没有将 SameSite 属性与此 cookie 一起存储。

(例如:Set-Cookie: CookieName=CookieValue; SameSite=Lax;

有解决办法吗?还是我做错了什么?

我正在使用旧的 Django 1.8 系统,但只需将 settings.py 文件中的 CSRF_COOKIE_SECURE 值更新为 True 即可为我解决警告。

查看 docs 了解更多信息。