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、條件語句-if條件語句
h1>
<
li>我要努力了
li>
<
li>你還可以玩玩?不可以
li>
<
lo>2、and、or、not
lo>
<
li>user1是不存在的
li>
<
li>uer1存在
li>
<
li>test.name 為空(含義:如果user.name的值不存在,則定義他為空)
li>
<
h1>2、條件語句-for條件語句
h1>
<
lo>}
lo>
br>
<
lo>}
lo>
br>
br>
<
lo>}:},
lo>
br>
br>
<
lo>針對list資料時一樣的道理,直接遍歷list資料即可,和python很像
lo>
<
h1>2.1、條件語句-for條件語句反向迭代
#匯入templates檔案所需導入庫
from django.template import
loader,context
defindex(request):
#第二個專案
#載入器,載入模板
t=loader.get_template("
index.html")
#django之建立第4-1個專案-dict形式
user =
c = context() #
在這裡test位變數,user為變數的值
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 條件語...
建立第1個Django專案
參考 環境準備 一台centos7,裝有python3 帶有pip3工具 首先使用pip安裝django pip3 install django 2.2安裝 django 之後,此時應該有可用的管理工具 django admin,使用它來建立專案 常用子命令 startproject 建立乙個專案 ...
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....