Django基礎之render()

結合一個給定的模板和一個給定的上下文字典, 並返回一個渲染後的HttpResponse對象。html

參數:python

  • request: 用於生成響應的請求對象
  • template_name: 要使用的模板的完整名稱, 可選的參數
  • context: 添加到模板上下文的一個字典. 默認是一個空字典. 若是字典中的某個值是可調用的, 視圖將在渲染模板以前調用它.
  • content_type:  生成的文檔要使用的MIME類型. 默認爲DEFAULT_CONTENT_TYPE設置的值. 默認爲"text/html"
  • status: 響應的狀態碼. 默認爲200
  • useing: 用於加載模板的模板引擎的名稱

一個簡單的例子:django

from django.shortcuts import render

def my_view(request):
    # 視圖代碼寫在這裏
    return render(request, "myapp/index.html", {"foo": "bar"})

上面的代碼等於:app

from django.http import HttpResponse
from django.template import loader

def my_view(request):
    t = loader.get_template("myapp/index.html")
    c = {"foo": "bar"}
    return HttpResponse(t.render(c, request))
相關文章
相關標籤/搜索