python怎么判断用户是否登录?

python中判断用户是否登录的方法:

def cmdbindex(req):
       if not request.user.is_authenticated():
          return render(request, 'login_error.html')
       else:
          return render_to_response('cmdb/index.html')
#会跳转到错误页面
		 
		 
def cmdbindex(req):
         return render_to_response('cmdb/index.html')

request user属性:

一个 django.contrib.auth.models.User 对象表示当前登录用户。 若当前用户尚未登录, user会设为django.contrib.auth.models.AnonymousUser 的一个实例。

可以将它们与 is_authenticated() 区别开:

if request.user.is_authenticated():
    # Do something for logged-in users.
else:
    # Do something for anonymous users.

user 仅当Django激活 AuthenticationMiddleware时有效。

更多Python知识请关注云海天python教程网。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python怎么判断用户是否登录?