django之建立第3個專案 編寫第乙個模板檔案

2022-03-12 21:17:37 字數 1071 閱讀 2977

1、django結構

2、在站點blog下建立templates資料夾,專門用於存放模板檔案

3、在templates資料夾下建立index.html檔案

#index.html

doctype html

>

<

html

lang

="en"

>

<

head

>

<

meta

charset

="utf-8"

>

<

title

>第乙個模板檔案

title

>

head

>

<

body

>

<

h1>django之建立第三個專案:編寫第乙個模板檔案

h1>

body

>

html

>

4、修改views.py檔案

#匯入templates檔案所需導入庫,注意沒有s

from django.template import

loader,context

defindex(request):

#第二個專案

#載入器,獲取乙個模板

t=loader.get_template("

index.html")

c=context({})#沒有寫入資料,只是單純的載入了index.html檔案

建立第1個Django專案

參考 環境準備 一台centos7,裝有python3 帶有pip3工具 首先使用pip安裝django pip3 install django 2.2安裝 django 之後,此時應該有可用的管理工具 django admin,使用它來建立專案 常用子命令 startproject 建立乙個專案 ...

django之建立第5個專案 條件語句

1 index doctype html html lang en head meta charset utf 8 title django之建立第5個專案 條件語句 title head br h2 name h2 h2 age h2 h2 訪問類方法 h2 h1 條件語句 h1 h1 1 條件語...

django之建立第7個專案 url配置

1 配置urls.py from django.conf.urls import patterns,include,url uncomment the next two lines to enable the admin from django.contrib import admin admin....