• 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')
    

  • 相关阅读:
    swift延时执行
    Swift3.0 — CocoaAsyncSocket客户端(Socket通信)
    SnapKit配置过程
    iOS App图标和启动画面尺寸
    mac升级到10.13 CocoaPods不能使用
    上传app到app store遇到 An error occurred uploading to the iTunes Store.(iTunes Store Operation Failed)的解决方法
    swift高斯模糊的自定义view
    Swift 实现部分圆角
    android 代码设置、打开wifi热点及热点的连接
    自定义android Dialog
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13349403.html
Copyright © 2020-2023  润新知