资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

django实现用户登陆验证源码-创新互联

今天小编就为大家带来一篇有关django实现用户登陆验证的文章。小编觉得挺实用的,为此分享给大家做个参考。一起跟随小编过来看看吧。

为喀喇沁等地区用户提供了全套网页设计制作服务,及喀喇沁网站建设行业解决方案。主营业务为做网站、成都做网站、喀喇沁网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
一.django简单用户登陆验证
  前端页面:
    
        




       {% csrf_token %}         Please sign in                                               
        Sign in            后端验证     from django.shortcuts import render,HttpResponseRedirect     from django.contrib.auth import authenticate,login,logout     from django.contrib.auth.decorators import login_required     def acc_login(request):     if request.method == 'POST':         print request.method         username = request.POST.get('username')         passwd = request.POST.get('password')         user = authenticate(username=username,password=passwd)         print 'username:%s \n passwd:%s \n user:%s' %(username,passwd,user)         if user is not None:#pass authtencation             login(request,user)             return HttpResponseRedirect('/')         else:             return render(request,'login.html',{                 'login_err':"Wrong username or password!"             })     else:         return render(request,'login.html')
from django.contrib.auth import authenticateuser = authenticate(username='john', password='secret')if user is not None:
    # the password verified for the user
    if user.is_active:
        print("User is valid, active and authenticated")
    else:
        print("The password is valid, but the account has been disabled!")else:
    # the authentication system was unable to verify the username and password
    print("The username and password were incorrect.")
    
    来源:http://python.usyiyi.cn/django/intro/tutorial02.html

首页中登录/退出按钮

  {% if  request.user.is_authenticated  %}

    
        
            {{ request.user.userprofile.name }}
            
        
    
    
      
  • Logout
  •        {% else %}   
  • Login
  •   {% endif %}

    
    
    
             {% if  request.user.is_authenticated  %}
            
                
                    
                        {{ request.user.userprofile.name }}
                        
                    
                
    
                
                  
  • Logout
  •                             {% else %}                     
  • Login
  •             {% endif %}          

    看完上述内容,你们掌握django实现用户登陆验证的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注创新互联行业资讯频道,感谢各位的阅读!

    另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。


    新闻标题:django实现用户登陆验证源码-创新互联
    文章URL:http://cdkjz.cn/article/cojjgd.html
    返回首页 了解更多建站资讯
    多年建站经验

    多一份参考,总有益处

    联系快上网,免费获得专属《策划方案》及报价

    咨询相关问题或预约面谈,可以通过以下方式与我们联系

    大客户专线   成都:13518219792   座机:028-86922220