- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 django-registration,只需设置它即可。
{{user.is_authenticated }}
是真的,即使我已经去了/accounts/logout/并注销了用户。
{{user.is_anonymous }}
也返回 true。根据 django 文档,这两个应该是不同的:
is_anonymous: Always returns False. This is a way of differentiating User and AnonymousUser objects. Generally, you should prefer using is_authenticated() to this method.
和
is_authenticated: Always returns True. This is a way to tell if the user has been authenticated. This does not imply any permissions, and doesn't check if the user is active - it only indicates that the user has provided a valid username and password.
我正在使用 django-registration 附带的标准 View ,但尚未触及它们。在模板中,我有以下代码:
{% if user.is_authenticated %}
{% user }}
{% if user.is_anonymous %}
is anonymous
{% endif $}
{% else %}
gotta login
{% endif %}
问题出在哪里?我将非常感激!
更新:我注意到在主页上,is_authenticated 和 id_anonymous 都返回 True,而如果我在登录前转到/accounts/login,只有 is_anonymous 返回 true,因为它应该是。而且,在主页上,如果有帮助,我有以下 View :
def home(request):
return render_jinja(request, 'index.html', blah = 'ga')
更新 2:print(request.user.is_authenticated()) 给出 False。然后,我有:
return render_jinja(request, 'index.html', blah = 'ga')
并且在模板中,user.is_authenticated 返回 FALSE。
更新 3:如果我使用 render_to_response,而不是 render_jinja,一切都很好。仍然不知道如何解决这个问题:(
最佳答案
您似乎正试图同时解决两件事;使用 jinja 模板的正确方法是什么?用户/匿名用户的处理方式是什么。也许尝试一次解决这些问题。
我没有使用 jinja 的经验,但您可能需要检查并确保您正在使用 differences between jinja and django template syntax考虑到。我所知道的最大区别是方法调用需要显式括号。因此,示例中的 is_authenticated 和 is_anonymous 调用需要括号。
Jinja style {{ user.is_authenticated() }}
Django style {{ user.is_authenticated }}
如果这不能解决问题,请尝试安装 django-debug-toolbar并查看模板的上下文。检查并查看 user
是 None 还是一个对象(User 或 AnonymousUser)。
您还可以阅读 AnonymousUser并查看 checking for an authenticated user 的示例在文档中。简而言之,对于 AnonymousUser 对象,is_anonymous() 总是返回 True 而不是 False,而 is_authenticated() 总是返回 False 而不是 True。
关于python - Django:is_authenticated 和 is_anonymous 在注销后都返回 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4298387/
尝试设置扩展基本用户的自定义用户模型。有些用户会有登录信息,有些则没有,但我仍然希望所有用户都登录。这就是我认为错误所说的。 在默认的 Django 模型中,他们被记录下来,但现在一些用户只有 IP
我正在使用 django-registration,只需设置它即可。 {{user.is_authenticated }} 是真的,即使我已经去了/accounts/logout/并注销了用户。 {{
我有一个 Flask 应用程序,最近在我的登录/退出表单中实现了 Flask-Login: @account.route('/sign-in', methods=['POST', 'GET']) de
我是一名优秀的程序员,十分优秀!