溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在Python中使用Django框架實(shí)現(xiàn)一個(gè)模板渲染功能

發(fā)布時(shí)間:2021-04-06 17:23:02 來源:億速云 閱讀:146 作者:Leah 欄目:開發(fā)技術(shù)

怎么在Python中使用Django框架實(shí)現(xiàn)一個(gè)模板渲染功能?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

項(xiàng)目名/settings.py(項(xiàng)目配置,配置模板文件的路徑):

import os
# 項(xiàng)目目錄的絕對(duì)路徑
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')],  # 設(shè)置模板文件目錄(templates文件夾 需要手動(dòng)創(chuàng)建)
    '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',
      ],
    },
  },
]

應(yīng)用名/views.py(視圖,使用模板的詳細(xì)步驟):

from django.http import HttpResponse
from django.template import loader,RequestContext
# 定義視圖函數(shù) (必須傳遞HttpRequest參數(shù)) (需要在urls.py中配置路由)
def index(request):
  # 1.獲取模板
  template = loader.get_template('應(yīng)用名/index.html')  # 需要在settings.py中配置模板目錄
  # 2.定義上下文 (分配的模板變量)
  context = RequestContext(request,{'title':'圖書列表','list':range(10)})
  # 3.渲染模板并返回 (生成html內(nèi)容)
  return HttpResponse(template.render(context))

應(yīng)用名/views.py(視圖,使用模板的簡單寫法,render):

from django.shortcuts import render # 導(dǎo)入render
# 視圖函數(shù)
def index(request):
  context = {'title':'圖書列表','list':list(range(1,10))}  # 字典,分配給模板的變量
  return render(request,'應(yīng)用名/index.html',context) # render對(duì)模板的使用步驟進(jìn)行了封裝。 第三個(gè)參數(shù)可以省略不寫

templates/應(yīng)用名/index.html(模板文件,需要手動(dòng)創(chuàng)建,settings.py中配置模板路徑):

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>模板文件</title>
</head>
<body>
<h2>這是一個(gè)模板文件</h2>
使用模板變量:<br/>
{{ title }}<br/>
使用列表:<br/>
{{ list }}<br/>
for循環(huán):<br/>
<ul>
  {% for i in list %}
    <li>{{ i }}</li>
  {% endfor %}
</ul>
</body>
</html>

模板變量使用:{{ 模板變量名 }}

模板代碼段:{% 代碼段 %}

for循環(huán):

  {% for i in list %}
  {% empty %}
    如果遍歷的list是空列表,就會(huì)顯示該內(nèi)容。
  {% endfor %}

模板文件的加載(查找)順序:

怎么在Python中使用Django框架實(shí)現(xiàn)一個(gè)模板渲染功能

看完上述內(nèi)容,你們掌握怎么在Python中使用Django框架實(shí)現(xiàn)一個(gè)模板渲染功能的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI