美文网首页
Django 应用,写一个真正有用的视图

Django 应用,写一个真正有用的视图

作者: 别动我名字呀 | 来源:发表于2019-04-28 21:29 被阅读0次

    每个视图必须要做的只有两件事:返回一个包含被请求页面内容的 HttpResponse 对象,或者抛出一个异常,比如 Http404

    当然你也可以从数据库里读取记录,可以使用一个模板引擎(比如 Django 自带的,或者其他第三方的),可以生成一个 PDF 文件,或者输出一个 XML

    写一个真正有用的视图

    我们在 index() 函数里插入了一些新内容,在上一节中讲过如果创建视图,让它能展示数据

    from django.http import HttpResponse
    
    from .models import Question
    
    
    def index(request):
        latest_question_list = Question.objects.order_by('-pub_date')[:5]
        output = ', '.join([q.question_text for q in latest_question_list])
        return HttpResponse(output)
    
    

    这里有个问题:页面的设计写死在视图函数的代码里的。如果你想改变页面的样子,你需要编辑 Python 代码。所以让我们使用 Django 的模板系统

    首先,在你的 polls 目录里创建一个 templates 目录。Django 将会在这个目录里查找模板文件。

    你项目中setting.py的 TEMPLATES 配置项描述了 Django 如何载入和渲染模板。默认的设置文件设置了 DjangoTemplates 后端,并将 APP_DIRS 设置成了 True。这一选项将会让 DjangoTemplates 在每个 INSTALLED_APPS 文件夹中寻找 "templates" 子目录。所以你只需要使用 polls/index.html 就可以引用到这一模板了。

    将下面的代码输入到刚刚创建的polls/index.html 模板文件中:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Django官方网站 </title>
        {% load staticfiles %}
    </head>
    <body>
        <p> {{ hello }}</p>
        <img src="{% static "img/2019-04-25.png" %}" alt="My image">
    </body>
    </html>
    

    然后,让我们更新一下 polls/views.py 里的 index 视图来使用模板:

    from django.http import HttpResponse
    from django.template import loader
    
    from .models import Question
    
    
    def index(request):
        context = 'hello word'
        template = loader.get_template('polls/index.html')
        return HttpResponse(template.render(context, request))
    

    上述代码的作用是,载入 polls/index.html 模板文件,并且向它传递一个上下文(context)。这个上下文是一个字典,它将模板内的变量映射为 Python 对象。

    一个快捷函数: render()

    「载入模板,填充上下文,再返回由它生成的 HttpResponse 对象」是一个非常常用的操作流程。于是 Django 提供了一个快捷函数,我们用它来重写 index() 视图:

    from django.shortcuts import render
    
    from .models import Question
    
    
    def index(request):
        context = 'hello word'
        return render(request, 'polls/index.html', context)
    

    我们不再需要导入 loaderHttpResponse 。不过如果你还有其他函数(比如说 detail, results, 和 vote )需要用到它的话,就需要保持 HttpResponse 的导入。

    总结:

    Django内views常用到到有三个方法,分别是:
    1.HttpResponse() :它是作用是内部传入一个字符串或变量,然后发给浏览器。
    2.render():它的作用就是将数据填充进模板文件,最后把结果返回给浏览器。可接收三个参数,一是request参数,二是待渲染的html模板文件,三是保存具体数据的字典参数。
    3.redirect()接受一个URL参数,表示让浏览器跳转去指定的URL.

    举例:

    def index(request):
        # 业务逻辑代码
        return HttpResponse("OK")
    
    def index(request):
        # 业务逻辑代码
        return render(request, "index.html", {"name": "monicx", "hobby": ["reading", "blog"]})
    
    def index(request):
        # 业务逻辑代码
        return redirect("https://blog.csdn.net/miaoqinian")
    

    ## 抛出 404 错误

    如果指定问题 ID 所对应的问题不存在,这个视图就会抛出一个 Http404 异常。

    我们暂时在 polls/detail.html 里把下面这段输进去:

    {{ question }}
    

    一个快捷函数: get_object_or_404()

    尝试用 get() 函数获取一个对象,如果不存在就抛出 Http404 错误也是一个普遍的流程。Django 也提供了一个快捷函数,下面是修改后的详情 detail() 视图代码:

    from django.shortcuts import get_object_or_404, render
    
    from .models import Question
    # ...
    def detail(request, question_id):
       question = get_object_or_404(Question, pk=question_id)
       return render(request, 'polls/detail.html', {'question': question})
    

    也有 get_list_or_404() 函数,工作原理和 get_object_or_404() 一样,除了 get() 函数被换成了 filter() 函数。如果列表为空的话会抛出 Http404 异常。

    更多内容参考:编写你的第一个 Django 应用,第 3 部分

    相关文章

      网友评论

          本文标题:Django 应用,写一个真正有用的视图

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