美文网首页
Django框架(九):请求与响应

Django框架(九):请求与响应

作者: 加州旅馆_6741 | 来源:发表于2019-05-05 21:08 被阅读0次

    一 . 请求 HttpRequest objects

    Django把请求的元数据都封装到请求对象中

    1. 常用属性

    • path 请求页面的完整路径的字符串,不包括协议和域名
    • method 返回当前请求使用的http方法,它保证是大写
    #判断一个请求的方法是POST还是GET
    if request.method == 'GET':
      pass
    
    • encoding 当前请求数据使用的编码,默认为'utf-8',一般为None,可以手动修改
    • GET 一个类字典对象,包含了所有的get参数
    • POST 一个类字典对象,包含了所有的post参数
    • FILES 一个类字典对象,包含了所有的上传文件信息
    • COOKIES 包含了请求里面所有的cookies信息的字典,键值都是字符串
    • session 一个可读可写的字典,键值都是字符串
    • META 元信息,一个可读可写的字典

    2.Form表单

    通过标签form,收集表单数据,返回给后端
    form标签必须指定两个属性:

    • action 用于指定提交地址,不写或者为空,表示提交到当前页
    • method 用于指定提交方式,默认为GET

    下面用一个简单的验证用户名密码登录页面做例子:
    login.html

    <form action="" method="post">
        <p>用户名:<input type="text" name="username"></p>
        <p>密码:<input type="password" name="password"></p>
        <p><input type="submit" value="登录"></p>
        {% csrf_token %}
    </form>
    

    views.py

    def login (request):
        '''
        用户:
        1.访问登录页面 GET
        2.填写用户名密码提交 POST
        服务器:
        1.先判断请求方式
        2.如果是GET就返回登录页面
        3.如果是POST 就接收用户名 密码 效验
        4.如果登录成功会返回首页
        '''
        if request.method == 'GET':
            return render(request,'teacher/login.html')
        elif request.method == 'POST':
            username = request.POST.get('username')
            password = request.POST.get('password')
            if username == '小明' and password == '123456':
                home_url = reverse('teacher:home')
                return redirect(home_url)
            else:
                return HttpResponse('用户名密码错误')
    
    补充:一键多值的获取

    当一个键值对中有多个值,get方法没有办法获取全部的值,必须用到getlist方法

    <body>
    <form action="" method="post">
        <p>用户名:<input type="text" name="username"></p>
        <p>密码:<input type="password" name="password"></p>
        <p><input type="submit" value="登录"></p>
        <p>爱好:打球<input type="checkbox" name="hobby" value="1">看书 <input type="checkbox" name="hobby" value="2"></p>
        {% csrf_token %}
    </form>
    </body>
    

    在视图函数中用到getlist方法,才能获取到这个复选框标签的所有值

            hobby = request.POST.getlist('hobby')
    

    3.文件的上传

    • settings中自定义文件存放路径
    UPLOAD_ROOT = os.path.join(BASE_DIR,'upload')
    
    • 创建上传模板页面
    <body>
    <form action="" method="post" enctype="multipart/form-data">
        <h1>上传文件</h1>
        <input type="file" name="file">
        <input type="submit" value="上传">
        {% csrf_token %}
    </form>
    
    • 创建上传文件视图函数
    from crm.settings import UPLOAD_ROOT
    
    def upload_file_view (request):
        if request.method == 'GET':
            return render(request, 'teacher/upload.html')
        else:
            file = request.FILES.get('file')
            file_path = os.path.join(UPLOAD_ROOT,file.name)
            with open(file_path,'wb') as f:
                for line in file.chunks():
                    f.write(line)
            return HttpResponse('上传完毕')
    

    如果要上传多个文件,请做如下修改

    <form action="" method="post" enctype="multipart/form-data">
        <h1>上传文件</h1>
        <input type="file" name="file" multiple>  #上传多个文件,添加multiple属性
        <input type="submit" value="上传">
        {% csrf_token %}
    </form>
    
    def upload_file_view (request):
        if request.method == 'GET':
            return render(request, 'teacher/upload.html')
        else:
            files = request.FILES.getlist('file')    #用getlist获取多个文件
            for file in files:
                file_path = os.path.join(UPLOAD_ROOT, file.name)
                with open(file_path,'wb') as f:
                    for line in file.chunks():
                        f.write(line)
            return HttpResponse('上传完毕')
    

    二、响应 HttpResponse 对象

    响应对象,需要手动创建
    我们编写的视图,负责实例化,填充和返回响应对象

    常用的属性:

    • content : 表示要返回的内容,字节类型
    • charset : 编码方式
    • status_code : 响应状态码
    • content-type : 指定输出的MIME类型

    常用的方法:

    • write(content) : 以文件的方式写入
    • set_cookie : 设置cookie
    • delete_cookie (key) : 删除指定cookie

    常用子类:

    • HttpResponseRedirect : 重定向 快捷方式 redirect
    • JsonResponse : 返回json数据,创建时需要传入字典
    • render() : 快捷方式

    相关文章

      网友评论

          本文标题:Django框架(九):请求与响应

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