您好,登錄后才能下訂單哦!
怎么在Python中使用Django框架實現一個模板渲染功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
項目名/settings.py(項目配置,配置模板文件的路徑):
import os # 項目目錄的絕對路徑 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], # 設置模板文件目錄(templates文件夾 需要手動創建) 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ]
應用名/views.py(視圖,使用模板的詳細步驟):
from django.http import HttpResponse from django.template import loader,RequestContext # 定義視圖函數 (必須傳遞HttpRequest參數) (需要在urls.py中配置路由) def index(request): # 1.獲取模板 template = loader.get_template('應用名/index.html') # 需要在settings.py中配置模板目錄 # 2.定義上下文 (分配的模板變量) context = RequestContext(request,{'title':'圖書列表','list':range(10)}) # 3.渲染模板并返回 (生成html內容) return HttpResponse(template.render(context))
應用名/views.py(視圖,使用模板的簡單寫法,render):
from django.shortcuts import render # 導入render # 視圖函數 def index(request): context = {'title':'圖書列表','list':list(range(1,10))} # 字典,分配給模板的變量 return render(request,'應用名/index.html',context) # render對模板的使用步驟進行了封裝。 第三個參數可以省略不寫
templates/應用名/index.html(模板文件,需要手動創建,settings.py中配置模板路徑):
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>模板文件</title> </head> <body> <h2>這是一個模板文件</h2> 使用模板變量:<br/> {{ title }}<br/> 使用列表:<br/> {{ list }}<br/> for循環:<br/> <ul> {% for i in list %} <li>{{ i }}</li> {% endfor %} </ul> </body> </html>
模板變量使用:{{ 模板變量名 }}
模板代碼段:{% 代碼段 %}
for循環:
{% for i in list %} {% empty %} 如果遍歷的list是空列表,就會顯示該內容。 {% endfor %}
模板文件的加載(查找)順序:
看完上述內容,你們掌握怎么在Python中使用Django框架實現一個模板渲染功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。