zoukankan      html  css  js  c++  java
  • django 登陆页配置

    node2:/django/mysite/mysite#cat urls.py
    """mysite URL Configuration
    
    The `urlpatterns` list routes URLs to views. For more information please see:
        https://docs.djangoproject.com/en/1.11/topics/http/urls/
    Examples:
    Function views
        1. Add an import:  from my_app import views
        2. Add a URL to urlpatterns:  url(r'^$', views.home, name='home')
    Class-based views
        1. Add an import:  from other_app.views import Home
        2. Add a URL to urlpatterns:  url(r'^$', Home.as_view(), name='home')
    Including another URLconf
        1. Import the include() function: from django.conf.urls import url, include
        2. Add a URL to urlpatterns:  url(r'^blog/', include('blog.urls'))
    """
    from django.conf.urls import include,url
    from django.contrib import admin
    from blog import views as view
    from news import views as newview
    urlpatterns =( 
    url(r'^admin/', admin.site.urls),
    url(r'^blog/$',view.archive),
    url(r'^articles/',include("news.urls")),
    url(r'^upload/$',newview.upload,name='upload'),
    url(r'^login/$', newview.login),
    url(r'^$', newview.index),
    url(r'^index/$', newview.index),
    )
    
    
    
    node2:/django/mysite/news#cat views.py
    # -*- coding: utf-8 -*-
    from __future__ import unicode_literals
    
    from django.shortcuts import render
    from django.http import HttpResponse
    
    # Create your views here.
    from django.shortcuts import render,render_to_response,redirect
    from .models import Article
    def index(req):
        return render_to_response('index.html')
    
    
    node2:/django/mysite/news/templates#cat index.html
    <form action="/login/" method="post">
        <label for="username">Your name: </label>
        <input id="username" type="text" name="username" value="{{ current_name }}">
        <label for="password">password: </label>
        <input id="password" type="text" name="password" value="{{ current_name }}">
        <input type="submit" value="OK">
    </form>
    
    
    
    
    from django.forms.extras.widgets import SelectDateWidget
    class UserForm(forms.Form):
        #Username = forms.CharField(max_length=100)
        Username = forms.CharField()
        Password = forms.CharField()
        #comment = forms.CharField(widget=forms.Textarea)
    def login(req):
        if req.method == "POST":
           print req
           print req.POST
           print type(req.POST)
           print req.POST['username']
           if req.POST['username'] =='aa':
              response = "You're looking at the second  results of question %s  %s" %(req.POST['username'],req.POST['password'])
              return HttpResponse(response )
           else:
               return redirect('/index/')
    def index(req):
        return render_to_response('index.html')
    

  • 相关阅读:
    PHP+MySQL实现海量数据导入导出的总结:is_numbric函数的坑
    【PHP开发规范】继承与扩展:PSR-2 编码风格规范
    【PHP开发规范】老生常谈的编码开发规范你懂多少?
    【PHP面试题】通俗易懂的两个面试必问的排序算法讲解:冒泡排序和快速排序
    php数组函数array_column:不用循环就能提取多维数组内容
    php使用urlencode对中文编码而引出的问题:urlencode和rawurlencode的区别
    table-tree vs stock vs whiteboard
    PDF解析
    山灵up4
    Devops之CI/CD
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13349403.html
Copyright © 2011-2022 走看看