美文网首页Python学习
Django使用POST和GET方法

Django使用POST和GET方法

作者: wangcc_sd | 来源:发表于2019-03-15 22:45 被阅读1次

在模板中新建一个HTML页面

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>login</title>
</head>
<body>

<form action="/login/" method="post">

    用户名   <input type="text"  name= "user">
    密码     <input type="password"  name="pwd">
    <input type = 'submit'>
</form>


</body>
</html>

2.在Views中定义方面

from django.shortcuts import render,HttpResponse

# Create your views here.

def timer(request):
    import  time
    ctime = time.time()
    return render(request,'timer.html',{'ctime':ctime})

def special_case_2003(request):

    return HttpResponse('special_case_2003')

def year_archive(request,year):
    return HttpResponse('special_case_2003',year)
def month_archive(request,year,month):
    return HttpResponse('special_case_2003', year,month)
def article_detail(request,year,month,day):
    return HttpResponse('special_case_2003', year,month,day)
def login(request):
    print(request.method)
    if request.method=='GET':

        return render(request,'login.html')
    else:
        print(request.GET)
        print(request.POST)
        return  HttpResponse('ok')

增加路由分发

"""first_pro URL Configuration

The `urlpatterns` list routes URLs to views. For more information please see:
    https://docs.djangoproject.com/en/2.1/topics/http/urls/
Examples:
Function views
    1. Add an import:  from my_app import views
    2. Add a URL to urlpatterns:  path('', views.home, name='home')
Class-based views
    1. Add an import:  from other_app.views import Home
    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')
Including another URLconf
    1. Import the include() function: from django.urls import include, path
    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path,re_path,include
from app01 import views



urlpatterns = [
    path('admin/', admin.site.urls),
    path('timer/', views.timer),
    path('login/',views.login),
    #路由配置   路径--->s视图函数
    #re_path(r'^articles/$',views.special_case_2003),

    #路由分发
    #re_path(r'app01',include('app01.urls')),
    re_path(r'^', include('app01.urls')),
]

遇到一个问题,在login.html 中

<form action="/login/" method="post">

如果action 为空的话,应该是默认使用当前的,填写表单后,一段时间打印的print(request.method)
一直都是get请求,不知道为什么,然后我也不知道修改了什么,就得到了预期。
如果您也遇到这种情况,请告诉我,谢谢!~

相关文章

  • Django使用POST和GET方法

    在模板中新建一个HTML页面 2.在Views中定义方面 增加路由分发 遇到一个问题,在login.html 中 ...

  • ajax方法的封装,get,post方式的注意点

    在ajax方法中,get方法和post方法是最常用的两种方法,下面总结了get和post方法在使用中需要注意的几点...

  • 知识点7-HTTP

    1. GET和POST GET 获取资源 当前网络请求中,绝大部分使用的是 GET 方法。 POST 传输实体主体...

  • REST Style中的POST和PUT

    REST风格使用HTTP协议原生的GET、PUT、POST、DELETE方法表示动作,其中PUT和POST方法的确...

  • Django系列5-请求和响应

    一. Django之GET请求和POST请求及响应处理 1.1 请求中的方法 方法描述GET请求指定的页面信息,并...

  • Django教程--Form表单

    Django教程--Form表单 前面我们已经了解如何在django中使用GET、POST传递数据,但是我们并没有...

  • GET和POST两种基本方法的使用和区别

    GET和POST是HTTP请求的两种最基本的方法,使用node.js时GET和POST也是就传输数据最基本的方法了...

  • Flask学习(十) - web请求

    GET/POST 使用get/post方法需要事先在函数中引入request get: 使用场景:仅用于向服务器获...

  • Django使用GET传值

    Django我自己的学习笔记,查看文集 GET/POST是最常见的使用HTTP请求,作为HTTP请求: GET是明...

  • js知识点2

    get() 和 post()方法

网友评论

    本文标题:Django使用POST和GET方法

    本文链接:https://www.haomeiwen.com/subject/ihpdmqtx.html