【Django 學習筆記】4、模板

  • 2020 年 3 月 12 日
  • 筆記

上一節視圖使用django.http.HttpResponse()來向頁面返回內容,但是這樣不符合 Django 的 MVT 思想,所以這一節將來記錄 Django 模板的應用。

模板是一個文本,用於分離文檔的表現形式和內容。

1、在項目根目錄下,創建templates目錄,在templates下新建index.html文件,PyCharm將自動生成html的文件內容格式。

.  ├── Book  ├── BookManager  └── templates      └── index.html

2、編輯setting.py文件第58行,修改TEMPLATES內容如下,目的是添加templates路徑,好讓接下來程序能夠找到index.html文件。

'DIRS': [os.path.join(BASE_DIR,'templates')],

3、修改view.py文件如下。

from django.shortcuts import render  from django.http import HttpResponse    def index(request):    context={      'H1':'OK!',      'H2':'-- By TeamsSix'    }    return render(request,'index.html',context)

4、修改index.html文件如下。

<!DOCTYPE html>  <html lang="en">  <head>      <meta charset="UTF-8">      <title>Home</title>  </head>  <body>  <H1 style="color:red;">{{ H1 }}</H1>  <H2 style="color:limegreen;">{{ H2 }}</H2>  </body>  </html>

5、此時,刷新瀏覽器。

6、視圖與templates的總結

原文鏈接:https://www.teamssix.com/year/200301-182831.html 參考鏈接: https://youtu.be/BXyGr9JQVcc https://www.runoob.com/django/django-template.html

往期推薦

Django 學習筆記 | 1、基礎概念和MVT架構

Django 學習筆記 | 2、模型

Django 學習筆記 | 3、視圖